multiple qualifiers for If statements
If Cells(i, "e").Value = "CA" Then
I want to include all west coast accounts with the same if statement.
If Cells(i, "e").Value = "CA" Or "WA" Or "OR" Or "NV" Then -- this
of course isn't working. How would I get it to work?
|