.ods

Sample ODS files download

ODS is the open-standard spreadsheet format used by LibreOffice Calc and Google Sheets. A royalty-free alternative to XLSX.

File size Label Specs / Info Format Download
8 KB 10 rows 10 rows ODS Download ODS Download
15 KB 100 rows 100 rows ODS Download ODS Download
60 KB 1000 rows 1000 rows ODS Download ODS Download
12 KB Formulas With formulas ODS Download ODS Download
20 KB Charts With charts ODS Download ODS Download
Advertisement
Technical guide

Everything you need to know about ODS

ODS (OpenDocument Spreadsheet, .ods) is the spreadsheet member of the OpenDocument family - LibreOffice Calc's native format. Like ODT, it's a ZIP of XML files structured per OASIS/ISO 26300, designed as the open alternative to Excel's XLSX.

How it works under the hood

  • Same ZIP structure as ODT. `content.xml` holds cells and formulas, `meta.xml` is metadata, `mimetype` tells you it's a spreadsheet.
  • OpenFormula. ODS uses OpenFormula - a standardized formula syntax that overlaps heavily with Excel's. SUM, VLOOKUP, IF all work the same.
  • No artificial row/col limits. ODS spec doesn't impose XLSX's 1M row limit, but in practice LibreOffice Calc has its own ceiling.
  • Charts in separate frames. Embedded charts are stored as separate ODF Chart documents inside the ZIP.

Where you'll actually use it

  • LibreOffice Calc as default save format
  • Open-format-mandated environments (government, education in EU)
  • Cross-platform spreadsheet exchange
  • Programmatic generation when you can't depend on Excel being installed

How it compares to alternatives

ODS vs XLSX: XLSX has wider plugin/macro ecosystem; ODS is open standard. Excel reads ODS. ODS vs CSV: CSV is plain data; ODS has formulas, multiple sheets, charts.

Things that will trip you up

  • Excel macros (VBA) don't work in ODS - LibreOffice uses Basic instead
  • Conditional formatting nuances differ between Excel and Calc
  • Date/time interpretation can vary (Excel epoch is 1900, ODS is system locale)
Test it yourself: LibreOffice Calc, Excel (limited), Google Sheets (imports). Python: `pyexcel-ods3` or use `pandas.read_excel(engine='odf')`.

Format details

MIME Types

  • application/vnd.oasis.opendocument.spreadsheet

License

CC0 1.0 (Public Domain)

Free for personal and commercial use, no attribution required.

Read full license