The NOR function takes one or more parameters and returns true if all parameters are false, or false if any parameter is found to be true. This function supports the Boolean return type. Each parameter is evaluated as a Boolean.
@NOR(Expression1 [, ..., ExpressionN]) | |
---|---|
Expression 1 | Required Boolean parameter; if true the function will return
false. If false, the function will continue evaluating the next
parameter, or return true if no additional parameters are provided. |
Expression N | Optional Boolean parameter(s), each evaluated for their Boolean
value. The function will return false and end evaluation with the
first true parameter found. If all parameters are true, the function
will return false. |
Boolean