NumberOfFalse Function
The NumberOfFalse function returns the number of provided conditions that evaluate as false.
Syntax
NumberOfFalse(condition1, condition2, ...)
The NumberOfFalse function returns the number of provided conditions that evaluate as false.
Arguments
condition
Boolean - Conditions to evaluate.
Remarks
Example:
NumberOfFalse(5=5, "hello"="hello", true); // returns 0
Example:
NumberOfFalse(5=25, "hello"="goodbye", false); // returns 3