Skip to main content

Operators Reference

The operators available depend on the field type. The builder only shows operators that make sense for what you picked.

Text fields (names, email, notes, etc.)

OperatorWhat it does
EqualsExact match
ContainsField contains the text anywhere (case-insensitive)
Starts withField begins with the text
Ends withField ends with the text
Is one ofField matches any value in a comma-separated list
Is not one ofField doesn't match any value in the list
Is emptyField has no value
Is not emptyField has any value

Number fields (amounts, sizes, IDs)

OperatorWhat it does
EqualsExact match
Greater than / Greater than or equal to> / >=
Less than / Less than or equal to< / <=
BetweenInclusive range (shows two input boxes)
Is one of / Is not one ofMatch against a list
Is empty / Is not emptyNull checks

Date fields

OperatorWhat it does
EqualsMatch a specific date
Greater than / Less than (+ "or equal to" variants)Before/after comparisons
BetweenDate range (shows two date pickers)
Is empty / Is not emptyNull checks
  • Equals — pick one option

  • Is one of / Is not one of — pick multiple options from a checkbox list

  • Is empty / Is not empty — null checks

    A multi-select checkbox popover open for a status field showing several options checked

    Yes/No fields

    Equals (with a True/False dropdown), plus Is empty / Is not empty.