I need to build following condition in Workflow Step Outcomes
Title = 'Amt' And (Amount < 5 OR Amount = 10)
*** Value of Title must be "Amt" for this condition to be true
It seems K2 is only allowing me to
Title = 'Amt' And Amount < 5 OR Amount = 10
So even though Title is not "Amt", but Amount is less than 5 or equal to 10, condition is resolving to true.
How to implement a condition like Title = 'Amt' And (Amount < 5 OR Amount = 10)? I took a very simple scenario. My requirement is much complex with many OR conditions.
Thanks!