The AnyAreFalse function returns true if any of the provided conditions is false. Otherwise false.
Syntax
|
The AnyAreFalse function returns true if any of the provided conditions is false. Otherwise false. |
|
AnyAreFalse(condition1, condition2, ...) |
|
Arguments: |
|
|
condition |
Boolean - Conditions to evaluate. |
Remarks
- Example: AnyAreFalse(5=25, "hello"="goodbye", false) returns true.
- Example: AnyAreFalse(5=5, "hello"="hello", false) returns false.
Comments
0 comments
Article is closed for comments.