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?
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:
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.