Quick Filters

Access Quick Filters by right-clicking on a column header in a table and selecting "Quick Filters" from the drop-down menu:

img

Now you can type filter statements into the Quick Filter field to filter columns:

img

The filter statement options for each column are dependent on the column's data type. The following sections provide a list of filter statement options for each data type.

Quick Filter Statement Options

Number Data Types

SymbolMeaningExample(s)
= (or nothing)Equal to
  • =50
  • 50
!=Not equal to
  • !=50
  • !50
>Greater than>50
>=Greater than or equal to>=50
<Less than<50
<=Less than or equal to<=50
&&Greater than X and less than Y>10 && <50
||OrNYSE || Nasdaq
nullNo valuenull

Note

You can combine multiple filtering statements in one Quick Filter field.

String Data Types

Filter statements for string data types are case-insensitive, and can use comparisons, simple wildcard rules, or regex.

SymbolMeaningExample(s)
= (or empty)Text equals
  • =spy
  • AAPL
!=Text does not equal
  • !=spy
  • !=MSFT
*Wildcard. Follows *. Java regex; zero or more letters.
  • A* ( matches A or AMD or AAPL)
  • *Z (matches XYZ)
~Text contains~sp
!~Text does not contain!~sp
nullText field is empty (no value)
  • null
  • =null
!nullText field is not empty
  • !null
  • !=null

Note

  • You can combine filtering statements. For example, !=A* is equivalent to "Text does not equal any value that starts with A".
  • \null can be escaped to match "null" as a string vs value.
  • If the value starts and ends with a regex-like string, pass it through: "/regex/i". Any reserved character here can be used if it is escaped first with an escape character "".

Date/Time Data Types

Date/Time filter statements are similar to filter statements for numeric data types. Date values that can be used in the filter statement include the year, month, and day. You can also use time values in conjunction with date values, including hour and minute, and optionally seconds and nanoseconds (e.g., 2018-01-25 09:25).

You can also use magic words such as "now", "today", and "yesterday". When "now" is used, the values include the timestamp down to the millisecond using the appropriate time zone.

SymbolMeaningExample
>Greater than (after)
  • >2018-01-25
  • >yesterday
>=Greater than or equal to
  • >=2018
  • >=today
<Less than (before)
  • <2018-01-25
  • <tomorrow
<=Less than or equal to
  • <=2018
  • <=tomorrow
= (or empty)Equal to
  • =2018-01-25
  • 2018-01
  • =yesterday
  • today
!=Not equal to
  • !=2018-01-25
  • !today
nullNo valuenull
!nullNot null (has a value)!null

Boolean Data Types

Boolean filtering statements work on columns displayed as "true" or "false".

  • To filter boolean columns, you can use any derivation of the words true or false, and in any letter case. For example, you can filter the "true" value using true, T, True, t, tru, tRUe, TRUE, etc.
  • You can also use the binary values 0 (true) or 1 (false) to filter boolean columns.
  • Use "Null" (also case insensitive) to filter for empty values in boolean columns.