These functions are based on the Logical Operators.
Function | Syntax | Operator | Description | Example |
---|---|---|---|---|
And | And(Condition1, Condition2 [,Condition3 …]) | && | Returns true if all arguments are true. | And(TRUE, TRUE): TrueAnd(TRUE, FALSE): FalseAnd(FALSE, FALSE): FalseAnd(TRUE, TRUE, TRUE): True |
Or | Or(Condition1, Condition2 [,Condition3 …]) | || | Returns true if any of the arguments are true. | Or(TRUE, TRUE): TrueOr(TRUE, FALSE): TrueOr(FALSE, FALSE): FalseOr(FALSE, FALSE, TRUE): True |
Not | Not(Condition) | ! | Returns true if its arguments is false, and returns false if its argument is true. | Not(TRUE): FalseNot(FALSE): TrueNot(NOT(TRUE)): True |
Updated about a year ago