Does not Equal Syntax

bennybee

Registered User.
Local time
Today, 10:14
Joined
Jan 13, 2004
Messages
50
Ok here comes the n00bie question for the day.

what is the "does not equal" syntax for VBA?
i tried

If x != "" Then
blah blah blah

but it doesnt like != which is what it is for alot of other languages. what is it for VBA?
 
What you using? Java or C++ usually?


The syntax is: <>

i.e.

Code:
If x <> 1 Then
 

Users who are viewing this thread

Back
Top Bottom