How can we apply multiple if statement

Hello,
I’m working on POC where I have scenario which requires multiple if - else if statement.
I have tried with if statement it allows only single if condition or do we have any option for switch statement???
Help appreciated…!!:slight_smile:

Hi,

You can use the function and() and or() like in the scenario below. I check if two numbers are positive and return a true or false result.

An alternative is nesting multiple if() statements. For example:

if(bool,if(bool,true,false),if(bool,true,false))
1 Like