Numeric search
Numeric search is very similar to text search. The only difference is that the search string must begin with one of the relational operators ">", ">=", "<" or "<=".
| Example | Result |
|---|---|
| >900 | Finds all values greater than 900. |
| <=900 | Finds all values less than or equal to 900. |
| >900<1000 | Finds all values greater than 900 and less than 1000. |
| <900>1000 | Finds all values less than 900 or greater than 1000. |