Advanced filter options

Logically join operators on row headers for advanced filtering of table data
Column Names are the column name with spaces replaced with "_"
For example: Home Address > home_address
Operators include
  • = exact
  • ~= contains
  • > greater than
  • >= greater than or equal
  • < less than
  • <= less than or equal

Logical Operators include AND, OR, NOT, and IN

Examples:

column_a=Foo AND column_b="The bar"
column_a=Foo OR column_b="The bar"
column_a=Foo AND (column_b=1 NOT column_c~=bar)
column_a IN [Foo,"The Bar"] AND NOT columnb="xyz"