I am able to delete certain text named "total" but i am also trying to delete another one at the same time how do i go about adding a second or third find.
Sub Macro4() Dim c As Range Dim SrchRng
Set SrchRng = ActiveSheet.Range("C1", ActiveSheet.Range("C65536").End(xlUp))
Do
Set c = SrchRng.Find("Total", LookIn:=xlValues)
If Not c Is Nothing Then c.EntireRow.Clear
Loop While Not c Is Nothing
End Sub