Expression | Arguments | ExampleXXXXXXX | Description |
---|---|---|---|
Has Any Value | Returns all values, including null | ||
Is Blank | Returns blank values | ||
Is Not Blank | Returns non-blank values | ||
Equals | 1 | Returns values matching the value provided | |
Does Not Equal | 1 | Returns non-matching values | |
Is Greater Than | 1 | Returns values greater than the provided value | |
Is Less Than | 1 | Returns values less than the provided value | |
Is Greater Than or Equal To | 1 | Returns values greater than or equal to the provided value | |
Is Less Than or Equal To | 1 | Returns values less than or equal to the provided value | |
Contains | 1 | Returns values containing a provided value | |
Does Not Contain | 1 | Returns values not containing the provided value | |
Starts With | 1 | Returns values which start with the provided value | |
Does Not Start With | 1 | Returns values which do not start with the provided value | |
Between, Inclusive | 2, comma separated | Example usage: -4,4 | Returns values between or matching two comma separated values provided |
Not Between, Exclusive | 2, comma separated | Example usage: -4,4 | Returns values which are not between and do not match two comma separated values provided |
Equals One Of | 1 or more, semi-colon separated | Example usage: a;b;c | Returns values matching any one of a semi-colon separated list |
Does Not Equal Any Of | 1 or more, semi-colon separated | Example usage: a;b;c | Returns values not matching a semi-colon separated list |
Contains One Of | 1 or more, semi-colon separated | Example usage: a;b;c | Returns values which contain any one of a semi-colon separated list |
Does Not Contain Any Of | 1 or more, semi-colon separated | Example usage: a;b;c | Returns values which do not contain any of a semi-colon separated list |
Expressions available for data of type boolean (true/false values):
Date and DateTime data can be filtered with the following expressions:
Expressions available for data of any numeric type, including integers and double-precision numbers:
String type data, including text and multi-line text data, can be filtered using the following expressions:
previousnext |
expand allcollapse all |