I want to create a conditional startup on a workflow. The condition is if ((A is true and B is true) or (C is true and D is true)) where the brack must be evaluated first.
The interface looks like I can set (A is true and B is true or C is true and D is true) which is not the same as what I wanted.
Does anyone know if it is possible to set the condition to ((A is true and B is true) or (C is true and D is true))?
thanks