Multi-sheet workbook → single CSV
Input: sales.xlsx with sheets Q1, Q2, Q3, Q4 — pick Q3, comma delimiter
Output: Q3.csv containing only the Q3 sheet rows, comma-separated, UTF-8 with BOM
500+ fast, free tools. Most run in your browser only; Image & PDF tools upload files to the backend when you run them.
Convert Excel XLSX or XLS files to CSV in your browser. Pick sheet, delimiter, preview, and download.
The XLSX to CSV Converter uses the SheetJS library (loaded from CDN) to read Excel XLSX and legacy XLS files entirely in your browser. After parsing, you can select any sheet from a multi-sheet workbook, choose a delimiter (comma, tab, semicolon, or pipe), preview the first 100 rows in a scrollable table, and download the full CSV. Cell values containing the chosen delimiter are automatically quoted per RFC 4180. No data is ever sent to a server — all processing is client-side.
Input: sales.xlsx with sheets Q1, Q2, Q3, Q4 — pick Q3, comma delimiter
Output: Q3.csv containing only the Q3 sheet rows, comma-separated, UTF-8 with BOM
Input: Product, Price\nApple, 1.50\n"Smith, John", 99.00
Output: Product,Price\nApple,1.50\n"Smith, John",99.00 — names auto-quoted per RFC 4180
Input: Name; Amount\nMüller; 1.234,56 (German Excel) — pick semicolon delimiter
Output: Name;Amount\nMüller;1.234,56 — preserves comma-as-decimal for Excel re-import
Input: report.xls from a 2002 ERP system, single sheet with 5,000 rows
Output: report.csv with all 5,000 rows, UTF-8 encoded, ready for database import