Add additional criteria.

P

Pat

I want to add additional values for deletion in the following code. First I
will give you an example of what I want to add.
If LCase(Cells(X, 1).Value) = "r","s" Then
Rows(X).Delete


Private Sub DeleteRows_Click()
Dim X As Long
Dim Y As Long
Y = Range("A65536").End(xlUp).Row
'y= find the last non empty cell in column A
For X = Y To 1 Step -1
'Lcase gets the lower case of the word
If LCase(Cells(X, 1).Value) = "s" Then
Rows(X).Delete
End If
Next X
End Sub


Thanks if you can help.
Pat
 
T

Tom Ogilvy

Private Sub DeleteRows_Click()
Dim X As Long
Dim Y As Long
Y = Range("A65536").End(xlUp).Row
'y= find the last non empty cell in column A
For X = Y To 1 Step -1
'Lcase gets the lower case of the word
If LCase(Cells(X, 1).Value) = "s" or _
LCase(Cells(X,1).Value) = "r" Then
Rows(X).Delete
End If
Next X
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top