Skip to main content



AllAreTrue Function

Returns true if all of the provided conditions are true. Otherwise false.

Syntax

AllAreTrue(condition1, condition2, ...)

Returns true if all of the provided conditions are true. Otherwise false.

Arguments

condition Boolean - Conditions to evaluate.

Remarks

Example:

AllAreTrue(a=1, b=2, c=3, false); // returns false