Convert to CSV
CSV is the most universal interchange format for tabular data, readable by Excel, Google Sheets and every data analysis tool. This group exports JSON and YAML structured data plus XLSX and XLS workbooks to CSV โ 4 conversion directions.
Encoding follows RFC 4180: fields containing commas or newlines are quoted, and quotes are escaped by doubling. JSON sources must be arrays of objects; spreadsheet sources use the first worksheet with formulas resolved to cached values. Comma, semicolon, tab and pipe delimiters are supported.
JSONโCSV
Converts JSON object arrays to CSV (RFC 4180, quote-escaped with CRLF), inlining nested values as JSON strings for Excel import and data analysis.
YAMLโCSV
Converts YAML object arrays to CSV, exporting structured lists from configuration files into Excel-readable tables.
XLSXโCSV
Extracts the first XLSX worksheet to UTF-8 CSV with cached formula values, importing spreadsheets into databases and scripts.
XLSโCSV
Extracts the first worksheet of legacy XLS files to CSV, feeding exports from legacy systems into modern data pipelines.