Filter Conditions for Strings
You can use single operators and combine operators to filter the text strings that appear in reports.
The following table displays examples of operators and the expected results.
Example |
Expected Result |
begins:com |
All values that begin with the text "com", such as "CommCell". |
ends:up |
All values that end with the text "up", such as "Group". |
equals:CommCellABC |
All values that exactly match the text "CommCellABC". |
notequals:test |
All values that do not exactly match the text "test". |
contains:co |
All values that include the text "co", such as "Company". |
notcontains:cell |
All values that do not include the text "cell". |
equals:Company || begins:Com |
All values that exactly match the text "Company" or all values that begin with the text, "Com". |
begins:Com && contains:ABC |
All values that begin with the text "Com" and also contain the text, "ABC". |
Last modified: 11/2/2018 7:13:26 PM