SheetRocks
Documentation/Formulas/NOT

NOT

Returns FALSE if logical expression is TRUE and TRUE if logical expression is FALSE.

Syntax

NOT(logical_expression)

Arguments

Argument Description Required
logical_expression A logical expression or a numerical value. Required

Examples

Negate true condition

=NOT(5 > 3)
Result ⇒ false

Negate false condition

=NOT(2 > 10)
Result ⇒ true

Negate cell condition

=NOT(A1 < 10)
Result ⇒ true
A
1 15

Related Functions

Other Logical functions:


← Back to Formula Reference