I have a sheet that I want to find all rows with Group Billing and delete those rows. I have looked online and below is the code I came up with but I keep getting Run Time error 91.
I would appreciate any help.
VBA Code:
ub Group_Billing()
Dim Found As Range
Found = Cells.Find(What:="Group Billing", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
If Not Found Is Nothing Then Found.EntireRow.Delete
End Sub
I would appreciate any help.