In order to perform advanced searches, you can use the following filter operators in the text-box filters:
| Operator | Description | Type | Example |
|---|---|---|---|
| < | Values lower than search term are matched | number | <11 |
| <= | Values lower than or equal to search term are matched | number | <=11 |
| > | Values greater than search term are matched | number | >11 |
| >= | Values greater than or equal to search term are matched | number | >=11 |
| = | Exact match search: only the whole search term(s) is matched | string / number | =11 |
| * | Data containing search term(s) is matched (default operator) | string / number | *202 |
| ! | Data that doesn't contain search term(s) is matched | string / number | !22 |
| { | Data starting with search term is matched | string / number | {S |
| } | Data ending with search term is matched | string / number | }y |
| || | Data containing at least one of the search terms is matched | string / number | 0.5 || 2.2 |
| && | Data containing search terms is matched | string / number | >4.3 && <25.3 |