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 returntruewhen thelines_changedfield value is greater than or equal to 10 andfalseotherwise.NOT(state == "CLOSED")returnstrueif thestatefield value is different fromCLOSED, andfalseotherwise.
