+ Reply to Thread
Results 1 to 2 of 2

removing rows featuring certain words (wildcards needed)

Hybrid View

  1. #1
    Registered User
    Join Date
    03-27-2008
    Posts
    1

    removing rows featuring certain words (wildcards needed)

    Hi, Im new to Excel, hope you can help me out, I've got this macro:

    Sub delete_rows()
    Dim lastrow As Long
    Dim row_index As Long
    Application.ScreenUpdating = False
    lastrow = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).Row
    For row_index = lastrow - 1 To 1 Step -1
    If Cells(row_index, "A").Value= "EXTRA" then
    Rows(row_index).delete
    End If
    Next
    Application.ScreenUpdating = True
    End Sub
    But it works only for rows with "EXTRA" word in them.

    I need it work also with e.g. "EXTRA_A" "EXTRA_B" "TT_EXTRA" etc. so I guess best would be use wildcard for EXTRA -> "*EXTRA*" but it doesnt work.

    Any solutions to this?
    Thanks a lot.

  2. #2
    Registered User
    Join Date
    03-13-2008
    Posts
    52
    Private Sub DeleteRows()
    Application.ScreenUpdating = False
    Dim c As  Range 
    Dim SrchRng 
    Set SrchRng = ActiveSheet.Range("A1", ActiveSheet.Range("A65536").End(xlUp)) 
    Do 
    Set c = SrchRng.Find("extra", LookIn:=xlValues) 
    If Not c Is Nothing Then c.EntireRow.Delete 
    Loop While Not c Is Nothing
    Application.ScreenUpdating = True
    End Sub
    As per the page I found the code from you could set the value you search for and delete any row containing by using an InputBox (so you could delete any rows containing text you specify without having to edit the code):

    Sub DeleteRows() 
    Dim c As  Range 
    Dim SrchRng As Range 
    Dim SrchStr As String 
    Set SrchRng = ActiveSheet.Range("A1", ActiveSheet.Range("A65536").End(xlUp)) 
    SrchStr =  InputBox("Please Enter A Search String") 
    Do 
    Set c = SrchRng.Find(SrchStr, LookIn:=xlValues) 
    If Not c Is Nothing Then c.EntireRow.Delete 
    Loop While Not c Is Nothing 
    End Sub
    I know it's probably not what you're looking for but the easiest to work out way around your problem. I take no credit for this code, a simple bit of googling found it!

    ~Liam
    Last edited by LiamPotter; 03-27-2008 at 11:23 AM.

+ 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