
Announcements
I have the following If/Else condition structure.
If (
(Condition 1),
If (Condition 1a),
//Condition 1a action,
If (Condition 1b),
//Condition 1b action,
),
Else If(
(Condition 2),
If (Condition 2a),
//Condition 2a action,
If (Condition 2b),
//Condition 2b action,
);
Can I get assistance on correcting the syntax, because I can't get it right despite what I have tried.
Thank you.
Hi @gymcode ,
Please try this
If(var="condition1",If(var2="condition3",action1,action2),var="condition2",If(var2="condition4",action3,action4))
Best Regards,
Wearsky