NOT
Syntax
not(logical_test)Arguments
Return value
Example
if(not(Region == "West"), 50, 25)Excel equivalent
Last updated
Was this helpful?
The NOT function returns TRUE if the argument is FALSE and FALSE if the argument is TRUE.
not(logical_test)logical_test – The condition to be evaluated
Either True or False
if(not(Region == "West"), 50, 25)Will return 50 if the region is not West; otherwise returns 25
Last updated
Was this helpful?
Was this helpful?

