laffo16 Posted February 8, 2008 Posted February 8, 2008 (edited) ok, my question is about the or & and operations. If {condition1} = 1 or {condition2} = 2 and $string = "string" Then i know that the AND operation only applies to {condition2}. How about a "Andalso" operation which applies the operation to all conditions. also, does != work for Not Equals? thanks 4 readin! Edited February 8, 2008 by laffo16
whim Posted February 8, 2008 Posted February 8, 2008 (edited) IF $1 = 1 or $2 = 2 andalso $string = "string" Then Try: IF ($1 = 1 or $2 = 2) and ($string = "string") Then Edited February 8, 2008 by whim
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now