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
| Field | Type | Required | Description |
|---|---|---|---|
Column | Column select | Yes | The column to search in |
Find/Replace pairs | List | Yes | Text 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
- Update Values - Update column values with expression
- Text Transform - Transform text: uppercase, lowercase, trim
- Math - Arithmetic operations on columns