Sub x()
Dim rFind As Range
Application.ScreenUpdating = False
With Sheets("Reconcile").Columns(4)
Set rFind = .Find(What:="Cue", LookAt:=xlWhole, MatchCase:=False, SearchFormat:=False)
If Not rFind Is Nothing Then
Do
rFind.EntireRow.Delete
Set rFind = .Find(What:="Cue", LookAt:=xlWhole, MatchCase:=False, SearchFormat:=False)
Loop Until rFind Is Nothing
End If
End With
Application.ScreenUpdating = True
End Sub
|