+ Reply to Thread
Results 1 to 3 of 3

deleting multiple entries macro

  1. #1
    Registered User
    Join Date
    07-27-2007
    Posts
    4

    deleting multiple entries macro

    I have been working to get this to work as a macro but am getting errors such as expected If. I have also tried using OR and this statement did not work either.

    Here is the slop that I currently have:

    Sub delete()
    '
    ' delete Macro

    '

    '
    Dim Cell As Range
    Dim Rng As Range

    Set Rng = ActiveSheet.Range("A2", Cells(Rows.Count, "A").End(xlUp))

    For Each Cell In Rng
    If Cell.Text Like "*jim*" Then Cell.Delete (xlshiftUp)
    ElseIf Cell.Text Like "*todd*" Then Cell.Delete (xlShiftUp)
    Else
    Next Cell
    End If
    Next Cell

    End Sub


    Any assistance will be appreciated. Thanks,

    Nox
    Last edited by noxxero; 08-03-2007 at 12:58 PM.

  2. #2
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    When deleting Rows you need to start from the bottom. Also, you are mixing cell references- Range & Cells

    Please Login or Register  to view this content.
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  3. #3
    Registered User
    Join Date
    07-27-2007
    Posts
    4
    RoyUk

    Thank you very much. It has been awhile since I have created any macros and the past few weeks have been catch up time for me.

    Thanks again,

    Nox

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1