Fastest way to search and delete

rholdren

Board Regular
Joined
Aug 25, 2016
Messages
140
Office Version
  1. 365
  2. 2019
Good morning. I am looking for a faster (better) way of searching and deleting. I have a small piece of code, listed below. It runs perfectly fine but sometimes the worksheet I run this against is huge and it takes a very long time to run. It can be anywhere from 50 rows to over a hundred thousand. Is there a faster way to do the below. I am open to complete change of direction if it works faster.

Thanks in advance for any help.

Sheets("COMPOSITE").Select

Dim cell As range


For Each cell In range("L:L")
If cell.Value = "DIAGS OR PROCS" Then
cell.EntireRow.Delete
End If
Next cell
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
One option is
VBA Code:
Sub rholdren()
   With Range("L2", Range("L" & Rows.Count).End(xlUp))
      .Replace "DIAGS OR PROCS", True, xlWhole, , False, , False, False
      On Error Resume Next
      .SpecialCells(xlConstants, xlLogical).EntireRow.Delete
      On Error GoTo 0
   End With
End Sub
 
Upvote 0
I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)

Give this a try with a copy of your workbook. If you have lots of disjoint ranges to delete, this should be much faster.

VBA Code:
Sub Del_Fast()
  Dim a As Variant, b As Variant
  Dim nc As Long, i As Long, k As Long
 
  nc = Cells.Find(What:="*", LookIn:=xlFormulas, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious).Column + 1
  a = Range("L2", Range("L" & Rows.Count).End(xlUp)).Value
  ReDim b(1 To UBound(a), 1 To 1)
  For i = 1 To UBound(a)
    If a(i, 1) = "DIAGS OR PROCS" Then
      b(i, 1) = 1
      k = k + 1
    End If
  Next i
  If k > 0 Then
    Application.ScreenUpdating = False
    With Range("A2").Resize(UBound(a), nc)
      .Columns(nc).Value = b
      .Sort Key1:=.Columns(nc), Order1:=xlAscending, Header:=xlNo
      .Resize(k).EntireRow.Delete
    End With
    Application.ScreenUpdating = True
  End If
End Sub
 
Upvote 0
Solution
Thanks Fluff that worked. I've always heard and sometimes said, "Less is More" but in this case it was the opposite and it worked very well. Also thanks for the reminder about updating the file with the version. I just did that. I have 365 and 2019 (on an older laptop). I don't mind reminders. I have CRS disease since the mini-stroke. Thanks again. (y)
 
Upvote 0
Thanks Fluff that worked.
I agree, but you said you sometimes had very large data and were looking for the fastest way. Did you test Fluff's & mine on such a large data?
Or are all your "DIAGS OR PROCS" grouped together?
 
Upvote 0
Glad we could help & thanks for the feedback.
However the reminder was from Peter. ;)
 
Upvote 0
Peter_SSs that was my Bad, I am sorry. Thank your for your response, it was actually yours I used. It worked perfectly. I really do appreciate the help.
 
Upvote 0
No problem. I think both suggestions should work fine, but as I said before, if there are many disjoint rows to be deleted in a large data set there would be a significant difference in speed. :)
 
Upvote 0
I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)

Give this a try with a copy of your workbook. If you have lots of disjoint ranges to delete, this should be much faster.

VBA Code:
Sub Del_Fast()
  Dim a As Variant, b As Variant
  Dim nc As Long, i As Long, k As Long
 
  nc = Cells.Find(What:="*", LookIn:=xlFormulas, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious).Column + 1
  a = Range("L2", Range("L" & Rows.Count).End(xlUp)).Value
  ReDim b(1 To UBound(a), 1 To 1)
  For i = 1 To UBound(a)
    If a(i, 1) = "DIAGS OR PROCS" Then
      b(i, 1) = 1
      k = k + 1
    End If
  Next i
  If k > 0 Then
    Application.ScreenUpdating = False
    With Range("A2").Resize(UBound(a), nc)
      .Columns(nc).Value = b
      .Sort Key1:=.Columns(nc), Order1:=xlAscending, Header:=xlNo
      .Resize(k).EntireRow.Delete
    End With
    Application.ScreenUpdating = True
  End If
End Sub

Hi Peter_SSs, is there a way to change this so that instead of deleting anything "DIAGS OR PROCS", it deletes anything that doesn't contain "DIAGS"?

I've tried changing
Code:
     If a(i, 1) = "DIAGS OR PROCS" Then
to
Code:
    If a(i, 1) <> "DIAGS" & "*" Then
and to
Code:
    If a(i, 1) like "DIAGS" & "*" Then
but have had no success
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,868
Members
449,054
Latest member
juliecooper255

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