[Table of Contents] [docx version]
SpreadsheetML Reference Material - Table of Contents
NOT ( logical-value )
Description: Computes the logical negation of logical-value.
Arguments:
Name |
Type |
Description |
logical-value |
logical |
The value to be negated. |
Return Type and Value: logical – The logical negation of logical-value; that is, it returns TRUE if logical-value is FALSE, and FALSE if logical-value is TRUE.
[Example:
NOT(TRUE) results in FALSE
NOT(FALSE) results in TRUE
NOT(10>5) results in FALSE
NOT(16.567) results in FALSE
end example]