Not Operator

Syntax

Expression Not Expression

See also: Operators, IF, True, False, And, Or, Xor

Summary

Returns true if the left hand terms is true and right hand term is false, or if the right hand term is true and the left hand term is false. Not is a synonym for Xor.

Examples

IF(2=3 Xor 3=3, 10, 5) = 10