Skip to main content
Version: 2.6

Filtering

By using a single Filter you can also create more advanced filtration with the use of operators listed in the table below.

SyntaxDescriptionExample
abc;*abc*The search string is compared to every word in the field value, disregarding case sensitivity.image-20231013125450803image-20231013111842517
abc*The search string is matched by any string that begins with an abc string and is followed by zero or more characters of any type.image-20231013112455093
*abcThe search string is matched by any string that ends with an abc string and is preceded by zero or more characters of any kind.image-20231013112156678
"abc"The search string is matched by a string including only the exact word or phrase enclosed within the quotation marks.image-20231013133549626
>valueFor numeric fields, the search string returns all records with a value greater than the specified value.image-20231013125730484
>=valueFor numeric fields, the search string returns all records with a value equal to or greater than the specified value.image-20231013125821160
<valueFor numeric fields, the search string returns all records with a value lower than the specified value.image-20231013130157932
<=valueFor numeric fields, the search string returns all records with a value equal to or lower than the specified value.image-20231013130106462
>dateFor numeric fields, the search string returns all date records with a value greater than the specified data.image-20231013132639792
>=dateFor numeric fields, the search string returns all date records with a value equal to or greater than the specified data.image-20231013155146569
<dateFor numeric fields, the search string returns all date records with a value lower than the specified data.image-20231013132852776
<=dateFor numeric fields, the search string returns all date records with a value equal to or lower than the specified data.image-20231013155042381
<value1 >value2Combination of two values in one search. For numeric fields, the search string returns all records with a value lower than the specified value1 and greater than value2. It works analogously for the other operators and their combinations (<=;>=)image-20231013133300429
<date1 >date2Combination of two date values in one search. For data value fields, the search string returns all records with a date value lower than the specified date1 and greater than date2. It works analogously for the other operators and their combinations (<=;>=),image-20231013155611369