i want to add multiple condition in a If activity or Decision activity like
RowCount > 100 && RowCount < 200
How to achieve this?
i want to add multiple condition in a If activity or Decision activity like
RowCount > 100 && RowCount < 200
How to achieve this?
@radhakrishnan84, Just use AND / OR instead of && / ||
Regards,
Dominic
Could you share the workflow with detailed example.
First i will be giving the input of any of the 26 alphabets,this variable .
For A,B,C,D -----It should execute one action
For E,F,G,H,I,J ------It should execute different action
For K,L,M,N,O,P-- It should execute another different action.
How to get this condition?
Hello,
Just saw your question, and i have a solution that is quiet easy actually.
Firstly create and IF in your workflow with the condition of:
VARIABLE=A or VARIABLE=B OR VARIABLE=C OR VARIABLE=D
And in the THEN column execute action1
Then nest another IF in the ELSE column of the first IF…and set that condition to:
VARIABLE=E OR VARIABLE =F (etc, etc)
And in that THEN column run Action2
The set the 3rd IF in the 2nd IF ELSE column with conditon VAR=K OR VAR=L
And the THEN column to run action 3
Essentially if the Letter Variable is not A or B or C or D then it will go to next IF decision and try for EFGHIJ, and then KLMNOP
Hope that makes sense. here is a screen shot for you
Hi,
Thanks for the input…
anyother short cut option to attain this multiple condition in a single if activity or a decision activity?
Thanks great.