Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Prefix Operator: Not

Description

The NOT operator can be applied to a terminal expression, to only return results that do not match the terminal expression.

Not is often used in conjunction with groups of expressions surrounded within parentheses.

Examples

Entity type is not script

Code Block
languagenone
Not EntityType = Script

Entity type is an incident and does not have a status of Open or ReOpened:

Code Block
languagenone
EntityType = Incident AND NOT (Status = Open OR Status = "ReOpened")

See Also