NOT
Tom Azernour avatar
Written by Tom Azernour
Updated over a week ago

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 to lines_changed < 10. These expressions return true when the lines_changed field value is greater than or equal to 10 and false otherwise.

  • NOT(state == "CLOSED") returns true if the state field value is different from CLOSED, and false otherwise.

Did this answer your question?