Is there a way to make sure something is not two things within one if statement?
I don't want to write out two different if statements, but will if needed. I want to cut down code, though.
I want something like:
VB Code:
If var <> ("Text1" Or "Text2") Then
I'm just not sure if this is possible or not.
