Convertidor de Excel a CSV
Convierte libros de trabajo .xlsx y .xls a CSV — un CSV por hoja, empaquetado en un ZIP.
Respuesta rápida: Convertidor de Excel a CSV: convierte libros .xlsx y .xls a CSV — un CSV por hoja, agrupados en un ZIP. Funciona íntegramente en el navegador, gratis y sin registro.
Última actualización
Bueno saber
CSV is the lowest common denominator that every database importer, data pipeline, and scripting language reads without a fuss, which is why exporting a workbook to CSV is often the first step in getting spreadsheet data into another system. Each sheet becomes its own file — a single-sheet workbook downloads as one .csv, while a multi-sheet workbook bundles into a ZIP with one CSV per tab, so you never silently lose the sheets you can't see.
The conversion flattens everything a spreadsheet layers on top of raw values. Formulas are exported as their computed result, not the formula text; colors, borders, and bold are gone; and merged cells expand to repeated values so the output is a clean rectangle. That last behavior is what keeps downstream parsers happy — a ragged grid with holes breaks most CSV readers.
Dates are the classic pain point in Excel exports because of locale ambiguity (is 03/04 March 4th or April 3rd?). This tool writes dates as ISO 8601 (YYYY-MM-DD), which re-imports cleanly everywhere and sorts correctly as text. If a date column comes out as a serial number instead, format that column as a real date in Excel before exporting.
If you need the trip the other way, the CSV to Excel converter rebuilds a workbook from one or more CSVs, and the delimiter converter handles the semicolon-separated variant that some European Excel locales default to.
Preguntas frecuentes
- ¿Sobrevivirán mis fórmulas?
- No — CSV no tiene concepto de fórmulas. Exportamos el valor actual de cada celda con fórmula, que es lo que hacen todas las demás herramientas de Excel a CSV.
- ¿Qué pasa con el formateo (colores, bordes, negrita)?
- CSV es un formato de texto plano y no tiene estilo. El formateo visual se descarta; los valores se conservan exactamente.
- ¿Cómo se exportan las fechas?
- Como ISO 8601 (YYYY-MM-DD o YYYY-MM-DDTHH:MM:SS) — el formato que Excel importa de nuevo sin ambigüedad de local.
- ¿Se suben mis archivos?
- No — SheetJS se ejecuta completamente en tu navegador. Incluso los datos financieros confidenciales están seguros.
- ¿Qué pasa con las celdas combinadas?
- Las celdas combinadas se expanden a valores repetidos a lo largo del rango combinado, por lo que el CSV resultante es rectangular y funciona en todas las herramientas posteriores.