Text Transform

Transform text: uppercase, lowercase, trim

What It Does

Text Transform applies a text transformation to a column: convert to uppercase, lowercase, trim whitespace, capitalize, reverse, or get string length.

How to Use It

Opening the Panel

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

Configuration

FieldTypeRequiredDescription
ColumnColumn selectYesThe column to transform
TransformSelectYesuppercase, lowercase, trim, ltrim, rtrim, capitalize, reverse, length

SQL Generated

SELECT *, UPPER(name) AS name 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