NOT
Returns true if the given expression/values is false, and false if the given expression is true.
Syntax
=NOT(expr)
Arguments
| Argument | Type | Description |
|---|---|---|
| exprN | Boolean | The value to use |
Examples
=NOT(false) → false
=NOT(true) → true
=NOT(OR(@"Property 1" = 1, @"Property 2" < 4)) → false
Checks if the shape data property "Property 1" is equal to 1 and "Property 2" is less than 4, and then returns false if so, true otherwise. Because "Property 1" is equal to 1, the function returns false.
Updated over 1 year ago