How can we apply multiple if statement

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