NOT

Reverses a logical result and returns the opposite boolean value

The NOT function returns the opposite of a logical value. It returns TRUE if the specified condition is FALSE, and FALSE if the condition is TRUE. It is commonly used with IF and other logical functions to invert conditions in calculations.

Syntax

NOT(logical_test)

Arguments

  • logical_test: The condition to evaluate and reverse.

Return value

Returns TRUE if the condition is FALSE and FALSE if the condition is TRUE.

Example

IF(NOT(Sub Region == "APAC"), 52640000, 0)

In this example, the NOT function is used within an IF statement to assign values to the 2027 Actuals Plan. The function evaluates whether Sub Region is not APAC. If the condition is TRUE, the formula returns 52.64 million; otherwise, it returns 0.

Excel equivalent

NOTarrow-up-right

Last updated

Was this helpful?