Convert Type

Turn a text column into real numbers or real dates. Or turn a date into text.

Why you need it

A CSV file carries no type information. Every column arrives as text unless the app can read it as something else. A sales export often lands with $1,200.00 in the amount column and 15/03/2026 in the date column.

Text will not add up, and text will not sort by month. Convert Type fixes both problems. It offers three targets: text, numeric and date.

Convert one column

  1. Type convert in the Search transforms box, in the Pipeline panel.
  2. Select Convert Type in the results.
  3. Open Select column and pick the column to fix.
  4. Open Convert to and choose text, numeric or date.
  5. Check the Preview block below the form.
  6. Click Apply.

The column keeps its name and its place in the grid. Only its type changes.

Text to numbers: the cleaning is automatic

Choose numeric on a text column, and the step strips the formatting first. You do not have to clean it yourself.

Value in your fileValue after the stepWhat happened
1,234.561234.56The thousands comma is removed.
$500500The currency sign is removed.
(500)-500Accounting brackets become a minus sign.
5%5The percent sign is removed.

The step also removes the euro, pound and rupee signs, and any spaces around the number.

Text to dates: auto-detect

Choose date, and a checkbox called Auto-detect date format appears. It is on already. Auto-detect tries a long list of common layouts on your values.

The list covers year-first dates such as 2026-03-15. It covers month-first dates such as 03/15/2026. It covers day-first dates such as 15/03/2026. It covers written months such as 15 Mar 2026. Times, including 10:30 AM and a trailing Z, are handled too.

Leave the checkbox on for most files. Watch the preview to confirm the result.

Text to dates: state the format yourself

Auto-detect reads the least ambiguous layout first. That can be wrong for a file that mixes day-first and month-first dates. Take control in two steps.

  1. Clear the Auto-detect date format checkbox.
  2. Type your layout in Source date format (overrides auto-detect). For day-first dates, type %d/%m/%Y.

Useful codes: %d is the day and %m is the month number. %Y is the four-digit year, and %b is a short month name.

Date to text

Pick a date column, then choose text. A box called Date → text format (e.g. %Y-%m-%d) appears. Type the layout you want to read. Type %b %Y to get Mar 2026. Leave the box empty for the default layout.

Values that will not convert

Nothing breaks and nothing is dropped. A value that cannot become a number or a date goes empty. The other rows convert as normal. Look for empty cells in the grid after you apply.

Add a Filter step with the is Empty comparison to list the failures.

For SQL users

Text to numeric runs the clean-up inline, then casts:

SELECT "order_id", TRY_CAST(REGEXP_REPLACE(REGEXP_REPLACE(TRIM(CAST("amount" AS VARCHAR)), '^\((.*)\)$', '-\1'), '[,$€£₹ %]', '', 'g') AS DOUBLE) AS "amount", "order_date" FROM data
Try Convert Type with sample data →

Related Operations