Filter

Show only rows matching conditions

What It Does

Filter lets you keep or remove rows based on conditions. Use the condition builder to create rules like "revenue > 1000" or "status = 'active'", or write SQL WHERE expressions directly.

How to Use It

Opening the Panel

Click the + button in the toolbar or press the operation picker, then search for "Filter". It's in the Filter & Sort group.

Configuration

FieldTypeRequiredDescription
ConditionsCondition builderYesOne or more filter conditions combined with AND/OR
ActionSelectNoKeep matching rows (default) or Remove matching rows

SQL Generated

SELECT * FROM data WHERE revenue > 1000 AND status = 'active'
Try this operation →

Notes

  • Null values are handled gracefully - operations skip or preserve nulls where appropriate.
  • You can edit any pipeline step by clicking on its card to re-open the panel with the same settings.
  • The SQL preview shows exactly what will execute - inspect it before applying.

Related Operations