NOT
Description
Returns TRUE if the provided logical value evaluates to FALSE; otherwise, returns FALSE.
Syntax
NOT(logical) -> Boolean
Parameters
| Parameter | Data Type | Required | Description |
|---|---|---|---|
| logical | Boolean | Yes | The logical value or expression to evaluate. |
Examples
NOT(TRUE)
-- Return FALSE.NOT(1 > 2)
-- Return TRUE.NOT(Priority == "High")
-- Returns TRUE if Priority is not equal to "High".Tips
It functions the same as the ! operator.