November 17, 200322 yr 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)
November 18, 200322 yr 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?
November 19, 200322 yr 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
Create an account or sign in to comment