NOT
Description
NOT returns a logical value that is the opposite of its value.
Syntax
NOT ( logical )
Parameter |
Description |
logical |
An expression that returns a logical value such as True or False. |
Remarks
If logical is false, NOT returns True. Conversely, if logical is true, NOT returns False.
Examples
This function returns False:
NOT(TRUE())
This function returns False:
NOT(MONTH("12/25/94") = 12)
Also, see