I want to delete all the rows containing the word "Resigned" only in column O.
This is my code below to process 331,000+ rows. Is it the most effective or fast way to do it?
Sub Delete Resigned ()
Dim i as Integer
For i = Range("O" & Rows.Count).End(xlUp).Row To 1 Step -1
If Instr(1, Cells(i, 3), "Resigned") <> 0 Then
Cells(i,3).EntireRow.Delete
End If
Next i
End Sub
Thanks in advance to the community!