Mar 14, 2023 06:15 PM
Hi Community,
I have 5 fields (checkbox) that can be selected or not, I need to assign a status triggered by these fields, if any field of the 5 is selected then a status will be set and if no one is selected It will assign a different status.
Thanks for the help.
Solved! Go to Solution.
Mar 14, 2023 07:23 PM
Try something like:
IF(
OR(
{Route 1 Under Testing},
{Route 2 Under Testing}
),
"Testing"
)
Mar 14, 2023 07:23 PM
Try something like:
IF(
OR(
{Route 1 Under Testing},
{Route 2 Under Testing}
),
"Testing"
)
Mar 15, 2023 09:28 AM