If your goal is to delete all the rows that contain the word loss then this might work for you.
Make a backup copy of the spreadsheet just in case.
CODE
Sub Macro1()
Range("a1").Select
Do
Set x = Cells.Find(What:="*loss*", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False)
If x Is Nothing Then Exit Sub
Cells.Find(What:="*loss*", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False).Activate
Selection.FindNext(After:=ActiveCell).Activate
Selection.Delete Shift:=xlUp
Loop
End Sub