Function: IsNot
Syntax
Code Block | ||
---|---|---|
| ||
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 | ||
---|---|---|
| ||
Faceted IsNot(Range(ScriptStepCount,10,20)) { COUNT } WHERE EntityType = Script |