Best way to find and delete rows !

hamohd70

New Member
Joined
Sep 21, 2016
Messages
35
I have a sheet that contains at least 97000 rows. I'm testing a VBA code to find and delete rows that contain certain word. my problem is that this works fine with fewer number of rows but gets stuck with larger ones.

here is my code:
Code:
    Application.ScreenUpdating = False
    Application.StatusBar = "Cleaning up, please wait.."

    Do While True
        Set c = Cells.Find(What:="Recover")
        On Error Resume Next
        If c Is Nothing Then Exit Do
        c.EntireRow.Delete
    Loop

    Application.ScreenUpdating = True
    Application.StatusBar = False

Is there a better and faster way to do it?

what if I wanted to combine conditions like deleting rows that contain either "Recover" or "NR"?

thanks
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
@MARK858 and @Rick Rothstein: each of the searched words will appear only once in each row and normally in one column across the sheet. by testing code [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=13]#13 [/URL] https://www.mrexcel.com/forum/members/rick-rothstein.htmlon my 97200 rows I found it too slow and then excel just crashed. I think that using a loop for larger row is not really efficient.
The loop only iterates twice because Mark set it up to search for two words... "Recover" and "NR" (although I am not sure where the NR came from). Given that, I am a little surprised you find the code in Message #13 too slow. Just out of curiosity, how many columns maximum are there on your sheet?
 
Upvote 0
The loop only iterates twice because Mark set it up to search for two words... "Recover" and "NR" (although I am not sure where the NR came from). Given that, I am a little surprised you find the code in Message #13 too slow. Just out of curiosity, how many columns maximum are there on your sheet?

original sheet has 22 columns.
"NR" is short for "Normal" :)

the code#8 worked in 8 minutes!!
 
Last edited:
Upvote 0
"Recover" and "NR" (although I am not sure where the NR came from)

Bottom of post number 1 :LOL:

what if I wanted to combine conditions like deleting rows that contain either "Recover" or "NR"?

thanks

Btw, I just have a feeling that the speed is an issue with the number of non-contiguous cells (although I thought that was sorted for specialcells from 2010).

Just guessing as the replace part worked fast when I tested it (possible option to use sort?) although was a fair bit quicker when restricted to one column now we know that is the case.

Just in case you miss it the OP has responded in the previous post to this.
 
Last edited:
Upvote 0
Now that we know the search range is column "B"
This is the way my original script should be.
I believe the OP has already used my script and said it worked so he/she must know how to modify it.
Code:
Sub Filter_Me()
'Modified 11-4-2017 9:29 PM EDT
Application.ScreenUpdating = False
On Error GoTo M
    With ActiveSheet.Range(Cells(1, 2), Cells(Cells(Rows.Count, 2).End(xlUp).Row, 2))
        .AutoFilter Field:=1, Criteria1:="Recover", Operator:=xlOr, Criteria2:="NR"
        .Offset(1).Resize(.Rows.Count - 1).SpecialCells(xlCellTypeVisible).EntireRow.Delete
        .AutoFilter
    End With
    Exit Sub
Application.ScreenUpdating = True
M:
    MsgBox "No rows found with this value" & vbNewLine & "Or some other problem occured"
ActiveSheet.AutoFilterMode = False
Application.ScreenUpdating = True
End Sub
 
Upvote 0
Yes Mark I'm wrong again.
I could make some excuse up but I guess it boils down to I'm just crazy.

Now that we know the search range is column "D"
This is the way my original script should be.
I believe the OP has already used my script and said it worked so he/she must know how to modify it.



Code:
Sub Filter_Me()
'Modified 11-4-2017 10:51 PM EDT
Application.ScreenUpdating = False
On Error GoTo M
    With ActiveSheet.Range(Cells(1, 4), Cells(Cells(Rows.Count, 4).End(xlUp).Row, 4))
        .AutoFilter Field:=1, Criteria1:="Recover", Operator:=xlOr, Criteria2:="NR"
        .Offset(1).Resize(.Rows.Count - 1).SpecialCells(xlCellTypeVisible).EntireRow.Delete
        .AutoFilter
    End With
    Exit Sub
Application.ScreenUpdating = True
M:
    MsgBox "No rows found with this value" & vbNewLine & "Or some other problem occured"
ActiveSheet.AutoFilterMode = False
Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,993
Messages
6,128,175
Members
449,429
Latest member
ianharper68

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top