I have the following code that basically searches column O and deletes any rows that contain the words in the array. Only problem is it wont remove rows where the words have capitals in or vice versa. I have lots of keywords to search for so adding different versions of each word isn't an option
Code:
Sub DelRows()
Dim V As Variant, DeleteMe As Variant
DeleteMe = Array("suma", "screw")
For Each V In DeleteMe
Columns("O").Replace "*" & V & "*", "#N/A", xlWhole, , True, False, False
Next
On Error Resume Next
Columns("O").SpecialCells(xlConstants, xlErrors).EntireRow.Delete
On Error GoTo 0
End Sub