Convert Excel to JSON Lines
Convert your Excel 2007+ (.xlsx) data to JSON Lines / NDJSON quickly
Excel 2007+ (.xlsx)
Excel 2007+ refers to the file format used by Microsoft Excel versions from 2007 onwards, typically having the .xlsx extension. This format is part of the Office Open XML (OOXML) standard and represents a significant change from the older binary format used in previous versions Excel. Excel files are a compressed Zip package which reduces the file sizes and makes them easier to manage and share. Excel support 1,048,576 rows and 16,384 columns per sheet, more complex formulas, and advanced features like conditional formatting, richer graphics, and improved security options.
JSON Lines / NDJSON
JSON Lines (also known as NDJSON — Newline Delimited JSON) is a text format where each line is a self-contained,
valid JSON value, typically a JSON object. It is widely used for streaming data, log files, and large data exports
because files can be read and written one record at a time without loading the entire document into memory.
Common file extensions are .jsonl and .ndjson.