File Format

XLSX (.xlsx)

Microsoft Excel's Open XML spreadsheet format — the standard for numerical data, tables, and calculations.

Extension
.xlsx
MIME Type
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

Last updated

What Is an XLSX File?

XLSX is the default format for Microsoft Excel spreadsheets since Office 2007. Like DOCX, it is a ZIP archive containing multiple XML files. The extension stands for Excel Open XML Spreadsheet.

XLSX Internal Structure

Rename any XLSX to .zip and open it:

  • xl/workbook.xml — list of sheets and their names
  • xl/worksheets/sheet1.xml — cell data for the first sheet
  • xl/sharedStrings.xml — all text strings (deduplicated)
  • xl/styles.xml — cell formatting definitions
  • xl/calcChain.xml — formula calculation order
  • xl/drawings/ — charts and images embedded in sheets

Common XLSX Errors

ErrorCauseFix
"Excel cannot open the file because the format is not valid"Corrupted ZIP structureTry opening in LibreOffice Calc; re-download if from external source
"We found a problem with some content"Damaged XML inside the XLSXClick Yes to repair; some data may be recovered
Formulas show as textAutomatic calculation disabledFormulas tab → Calculation Options → Automatic
Charts missingEmbedded drawing relationship brokenRecreate charts from the data
File opens in Protected ViewDownloaded from internetEnable editing — this is a security feature, not corruption

XLSX vs CSV

FactorXLSXCSV
FormulasYesNo
Multiple sheetsYesNo (one per file)
FormattingYesNo
ChartsYesNo
Universal compatibilityRequires Excel/CalcOpens in any text editor
File sizeLargerMuch smaller

Use CSV for data exchange between systems. Use XLSX when formatting, formulas, or multiple sheets are needed.