NOT
Returns the inverted value or expression passed to it. If false, then returns true and vice versa.
Syntax: NOT (
logical_expression
)
logical_expression
is the logical test or expression or boolean value (true, false)
Example: NOT ( true )
Output: false
Example: IF ( NOT ( AND ( true , 2 < 3 )) , 10 , 20 )
Output: 20
Last updated
Was this helpful?