NOT
- 18 May 2022
- 1 Minute to read
-
DarkLight
-
PDF
NOT
- Updated on 18 May 2022
- 1 Minute to read
-
DarkLight
-
PDF
Returns true
if the given parameter is false
, otherwise returns false
. Equivalent to the !
operator.
Function signature
NOT(value: Boolean) => Boolean
Parameter | Description |
---|---|
Value | True/false value to negate |
Examples
Formula | Return value |
---|---|
NOT(false) |
true |
NOT(true) |
false |
Was this article helpful?