Not (operator)
Applies NOT logic to a Boolean operand.
The result is True if the operand is false, and False if the operand is true.
Syntax
Not operand
operand = operand to logically invert
Remarks
Returns #ERR! if the operand cannot be understood as a Boolean.
Examples
Not True = FalseNot False = True