I am trying to loop through an array and, when it finds a cell which is not equal a specific value, it deletes the entire row. Here is the code:
Sub DeleteTest()
Dim crr()
crr = Range("A3:A1000")
For i = LBound(crr, 1) To UBound(crr, 1)
If (crr(i, 1) <> "One" And crr(i, 1) <> "Two") Then
' Line to delete the row in which the value of the cell is not One or Two
End If
Next
End Sub
I know I can also do it with an Autofilter, but I would like to know the way to do it with the array.