How can i improve the following working code?
I would like to be able to join the "Select Case True" with the normal "Select Case" conditions
With w.Sheets("test")
For i = n To 10 Step -1
Select Case .Cells(i, 1)
Case 10111,23232,98076,41324
.Cells(i, 1).EntireRow.Delete
End Select
Select Case True
Case .Cells(i, 1) Like "A*"
.Cells(i, 1).EntireRow.Delete
End Select
Next i
End With
Thank You