NOT(logical)

The NOT function returns the logical NOT of its argument. The argument should have a logical value of TRUE or FALSE, which NOT then negates to give the opposite value.

For example:

NOT(TRUE)

returns FALSE

NOT(2+2=5)

returns TRUE

See also:

Logical operators

Other logical functions