Last updated 2 years ago
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