I have a custom field where users can select certain values with a checkbox.
Based on these values certain tasks get made in my automation flow.
But certain subtask should take all but 1 values selected
So the user selects A-B-C
If(B or C)
Subtask 1 gets made with value BC (how do I remove A here)
If(A)
Subtask 2 gets made with value A (this is just via the filter and 1 value assigned)
But if the user selects AC
If(B or C)
Subtask 1 should get made with value C (how do I remove A here)
If(A)
Subtask 2 gets made with value A (this is just via the filter and 1 value assigned)