NOT
Reverses a logical result and returns the opposite boolean value
Last updated
Was this helpful?
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.
NOT(logical_test)logical_test: The condition to evaluate and reverse.
Returns TRUE if the condition is FALSE and FALSE if the condition is TRUE.
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.

Last updated
Was this helpful?
Was this helpful?