Versions Compared

Key

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

Function: IsNot

Syntax

Code Block
languagenone
IsNot(function)

Description

The IsNot function takes a single parameter, which should be a function that returns a boolean (true/false) value. If the function returns true, IsNot will return false and if the return value is false, IsNot will return true.

Examples

Any scripts where the step count is NOT between 10 and 20:

Code Block
languagenone
Faceted IsNot(Range(ScriptStepCount,10,20)) { COUNT } WHERE EntityType = Script

See Also