I am trying to delete complete row which contain the value "THD" in first cell. The content could look like "THD_C_L10.0W5.0H15.0P7.5" but THD is always there.
I tried it with following loop:
For i = 1 To ActiveSheet.UsedRange.Rows.Count
If InStr(1, LCase(Tabelle2.Cells(i, 1)), "THD") <> 0 Then
Rows(i).EntireRow.Delete
End If
Next
But unfortunately its not working. Any ideas?