1. Sub Makro1()
  2. Do
  3. Set found = Cells.Find(What:="failed", After:=ActiveCell, LookIn:=xlValues, _
  4. LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext)
  5. If found Is Nothing Then
  6. MsgBox "fertig"
  7. Exit Do
  8. Else
  9. row_found = found.Row
  10. Rows(row_found).Delete
  11. End If
  12. Loop
  13. End Sub