I would like to implement the following field condition. Is this possible?
if ( fieldA = no AND (fieldB = no OR fieldC = no) )
I would like to implement the following field condition. Is this possible?
if ( fieldA = no AND (fieldB = no OR fieldC = no) )
Here's a pretty good guide (and community comments) for conditional logic / branching:
https://help.gocanvas.com/hc/en-us/articles/231963587-How-to-add-conditional-branching
Sara's answer in the comments indicates that it goes in order until it hits the first "out".
I just tested several different ways and your example works if you "back into it" kind of like this:
Field C = no
And
Field A = no
Or
Field B = no
And
Field A = no
...But being able to use parenthesis would be way easier. There's an enhancement request already to add this for calculations:
...but it should also be available with field / screen conditions...
Please sign in to leave a comment.
Comments
4 comments