Is it possible to create conditional logic that uses both "Any" and "All"?
Here's my problem:
1. I have a checkbox that allows clients to select an option.
2. If they select that checkbox -- a pulldown item appears that offers 4 other options.
3. If they select any of those 4 options -- a different grouping of "last" options appear.
However, if they spontaneously decide to deselect the original checkbox at the last moment -- all of the last "option groupings" still persist on the form. That's because, their first pulldown selection (#2 above) -- may be still "selected" -- even though it is now invisible because the checkbox was deselected.
So, I think I need some sort of "compound" conditional logic that says:
__________________________________
If #1 is true...
AND
Any of the 4 items from #2 are true...
Then display the appropriate options in #3.
__________________________________
This type of conditional logic would cause the last options in #3 to disappear if the original checkbox in #1 was deselected at the last moment. As it is currently structured, I cannot accomplish this because the conditional logic is globally "Any" or "All".
I hope that makes sense.
Thanks in advance for your assistance.