Type: Function
Function: NOT
Syntax: NOT(condition)
Description: Returns false
if the argument evaluates to true
and vice-versa. The alternative shorthand version !
is available.
Sample usage:
NOT(lines_changed >= 10)
is equivalent to!(lines_changed >= 10)
which is equivalent tolines_changed < 10
. These expressions returntrue
when thelines_changed
field value is greater than or equal to 10 andfalse
otherwise.NOT(state == "CLOSED")
returnstrue
if thestate
field value is different fromCLOSED
, andfalse
otherwise.