Skip to main content



AnyAreTrue Function

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

Syntax

AnyAreTrue(condition1, condition2, ...)

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

Arguments

condition Boolean - Conditions to evaluate.

Remarks

Example:

AnyAreTrue(a=1, b=2, c=3, true); // returns true