Skip to main content

Query builder

The bar above the grid filters the sheet. It is a token-based builder, not a text search box: you pick a column, then an operator, then a value, and each finished rule becomes a chip you can edit or remove.

Focus it with Ctrl+Q.

Building a rule

Start typing and the bar suggests columns from the sheet's own schema. Pick one and it offers only the operators that make sense for that column's type — a text column never offers , a number column never offers starts with.

salary ≥ 19900
└ column └ operator └ value

Press Tab or Enter to accept the highlighted suggestion.

Operators

Which set you get depends on the column's type.

Text columns

OperatorOperands
contains1
does not contain1
equals1
not equals1
starts with1
ends with1
is empty0
is not empty0

Number columns

OperatorOperands
=1
1
>1
1
<1
1
between2
is empty0

between takes two values and is inclusive of both ends.

Combining rules

Rules join with and / or. and binds tighter than or, so:

name contains ada and salary ≥ 19900 or status equals single

groups as (name contains ada AND salary ≥ 19900) OR (status equals single). There is no nesting and no parentheses — if you need those, filter your data before handing it to the table.

Shortcuts

Alongside the column suggestions the bar offers ready-made shortcuts derived from the sheet, such as Top N and Bottom N for each numeric column. Picking one drops in the finished rule.

Saved queries

A query you use often can be saved from the settings panel and recalled later. Saved queries live with the sheet's other persisted settings.

Find & replace

Filtering is not the same as editing. To change values rather than narrow them, use Ctrl+H — it searches the whole sheet and replaces in place, and every replacement goes through the same undo history as ordinary typing.