Find & Replace

Search and replace values in a column

What It Does

Find & Replace searches for text in a column and replaces it with new text. Supports multiple find/replace pairs.

How to Use It

Opening the Panel

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

Configuration

FieldTypeRequiredDescription
ColumnColumn selectYesThe column to search in
Find/Replace pairsListYesText to find and its replacement

SQL Generated

SELECT *, REPLACE(status, 'pending', 'awaiting') AS status FROM data
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