I searched the forum but wasnt able to find anything that really worked. I have a simple sheet where i want to filter column AZ for anything labeled "LOW" or "TBD" and delete only those. Then remove the filter.
I was running the below code but since it deleted each one in line it would miss some as the i would just keep going.
For i = 2 To access.UsedRange.Rows.Count
If access.Cells(i, 11) = "LOW" Or "TBD" Then
Rows(i).delete
Exit For
End If
Next i