You need to sign in to do that
Don't have an account?
mcc22
multiple checkbox validation in flow
I am using three checkboxes (A, B, C) in the final screen of a flow that needs to be required based on the selection of the other checkboxes.
The requirement is as follows: If C is blank, A and B are required, else C is required.
I have tried writing this forward and backward and can't seem to find a formula that works.
Is it possible to add a third condition in the following? This is as far as I got.
IF({!C}=TRUE && A = FALSE, TRUE, FALSE)
Many thanks
The requirement is as follows: If C is blank, A and B are required, else C is required.
I have tried writing this forward and backward and can't seem to find a formula that works.
Is it possible to add a third condition in the following? This is as far as I got.
IF({!C}=TRUE && A = FALSE, TRUE, FALSE)
Many thanks
Can you elaborate on the setup you used to check further and respond back?
Looking forward to your response.
Thanks.
Thanks for your reply.
At the bottom of the screen, I am using three checkbox components to capture the last steps in the negotiation stage for an opportunity. Terms need to be signed before the opportunity can be closed-won, except obviously if it was lost. That's the tricky part.
The formula I'm trying to use will prevent the opportunity from being closed-won without terms, it allows closed-lost without terms. But it doesn't allow terms & closed-won.
Do I need to use nested IF statements to identify all possibilities? Surely there is something simple I am missing here. Any guidance will be greatly appreciated.