I have macro which working good but its super slow, see below. What it is basicly doing is that macro go through every lines in column F and than it will delete the row.
so can I some how replace my loop with something quicker?
Thank you very much and sending best regards from Czech Republic.
Sub Delete2_Find()
Dim rgFoundCell As Range
Application.ScreenUpdating = False
With Sheets("Raw Data")
Set rgFoundCell = .Range("F:F").Find(what:=Month(Now) - 2)
Do Until rgFoundCell Is Nothing
rgFoundCell.EntireRow.Delete
Set rgFoundCell = .Range("F:F").FindNext
Loop
End With
Application.ScreenUpdating = True
MsgBox "DONE!"
End Sub