Clean number formatting in yourCSV
Strip currency symbols, thousands separators, and percent signs to get plain, math-ready numbers, without uploading a single row.
Strip currency symbols, thousands separators, and percent signs to get plain, math-ready numbers, without uploading a single row.
Pick the columns to clean (or let the tool auto-detect numeric-looking ones), choose whether percents become fractions, and run. Everything happens client-side in your browser.
Drop in a file with prices, percentages, or any numbers wrapped in currency symbols, commas, or spaces. Your data stays in the browser and is never uploaded.
Select the columns to clean, or leave the picker empty to auto-detect columns that look numeric. Toggle percent-to-fraction if you want 50% to become 0.5 instead of 50.
Download a CSV where
,234.50 becomes 1234.5 and EUR 9,99 becomes 9.99. The tool reports how many cells it cleaned so you can verify the result.
Spreadsheets love to dress numbers up with symbols and separators. Those decorations break sorting, summing, and importing. This tool strips them back to plain values.
A value like ,234.50 is text to most tools, so sums and averages silently fail. Stripping it to 1234.5 makes every column a real number again.
Databases reject 'EUR 9,99' in a numeric column. Plain values import without type errors or manual find-and-replace passes.
Mixed European and US formatting (1.234,50 vs 1,234.50) is normalized to a single decimal style, so the same column parses the same way everywhere.
Financial figures and revenue numbers never leave your machine. The whole transform runs in client-side JavaScript with no server round trip.