NOT function
From Apache OpenOffice Wiki
< Documentation | How Tos
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
NOT
Reverses the logical value. Returns TRUE if the argument is FALSE, and FALSE if the argument is TRUE.
Syntax:
NOT(logical_value)
- where logical_value is the logical value to be reversed.
Example:
NOT( TRUE() )
- returns FALSE
Issues:
- Entering =NOT(TRUE) in a cell correctly returns FALSE, but the display in the formula bar is =NOT(1).
- See Issue 58572;84266 .
See Also