NOT

Returns the inverse of the received TRUE or FALSE value. So TRUE becomes FALSE and FALSE becomes TRUE. Note that those values can be variables or the result of functions and operators.

This is useful for conditions for IF and @IF for example.

Usage

NOT(value)

Parameters

value

(Required) The TRUE or FALSE value to invert

Examples

Example With these variables Result

NOT(TRUE)

(None)

FALSE

NOT(FALSE)

(None)

TRUE

NOT(age >= 18)

age is 22

FALSE

NOT(age >= 18)

age is 10

TRUE

IF(NOT(country = “Belgium”), “verified”, “not verified”)

country is "Canada"

“verified”

See also