rivet Posted November 17, 2003 Posted November 17, 2003 What is the proper syntax for three conditions: if statement = conditionA or (conditionB and conditionC) Do parenthesis work in this case? A = sum(zero) B = sum(one) c = isEmpty(field)
ESpringer Posted November 18, 2003 Posted November 18, 2003 Parentheses should work in the usual Boolean fashion, but I'm not sure I follow your question, or at least what you mean by the list below... what do that A,B, and C have to do with the conditions above? (Sorry if I'm being obtuse!) Can you give your situation?
spb Posted November 19, 2003 Posted November 19, 2003 It looks like he's asking about the syntax for having one of two conditions make his If true. Either conditionA is true (sum(zero) or (conditionB and conditionC) is true (sum(one) and simultaneously, a field is empty). Using parentheses as you originally did is correct. The If will not progress if just conditionB is true. If sum(one) is true, it iwll not resolve unless the field is also empty. Steve Brown
Recommended Posts
This topic is 7674 days old. Please don't post here. Open a new topic instead.
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