Related Topics: | ||
Description: Reverses the value of its arguments. Use NOT when you want to make sure a value is not equal to one particular value.
Syntax: NOT(Logical)
Logical is a value or expression that can be evaluated to TRUE or FALSE.
Remarks:
If Logical is FALSE, NOT returns TRUE; if Logical is TRUE, NOT returns FALSE.
Example:
NOT(FALSE) = TRUE [reverses FALSE]
NOT(1 + 1 = 2) = FALSE [evaluates statement to TRUE and reverses value to FALSE]
© 1992-2015. ReliaSoft Corporation. ALL RIGHTS RESERVED.