Multiple conditions in an if statement

I need to have a statement like this:
If var1 == true & var2 == true & var3 == true, then {execute stuff}.

Is there anyway to have the if/else include multiple paramenters?

Just use the and operator instead of the ampersand.

Please see all operators in this Help Center article:

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.