"Excel found unreadable content in '<name>.xlsx'"

That prompt means Excel opened your workbook, recognized the package, then hit XML it could not parse. Your cells, formulas and sheets are almost always still inside — the damage is in the wrapper around them, and repairing that wrapper never requires sending the workbook anywhere.

When Excel shows "Excel found unreadable content in '.xlsx'. Do you want to recover the contents of this workbook?", it has decided the file is a valid enough package to attempt, but one of its internal parts is broken. A modern .xlsx is not a single binary blob — it is a ZIP archive full of XML files. Drop the workbook above and the tool opens that package in your browser, rebuilds the container and the malformed parts, and produces a file Excel will open cleanly — without the workbook ever leaving your machine.

Your file never leaves your device — repair runs in your browser. 0 bytes uploaded.

Your data is the big block — usually intact. What breaks is the small index. Repair rebuilds it.

Drop a file here or browseTap to choose a file

ZIP · Office · PDF · video · JPG · PNG · RAR/7z · SQLite — repaired right here in your browser. Nothing is uploaded

0 bytes uploadedFree: 3 repairs/day — up to 500 MB video, 100 MB docs & archives, 50 MB photos. Free download. Single repair €5.90. No account required.

Fix it now

  1. Drop the file
  2. Repair runs locally
  3. Download the result

An .xlsx is a ZIP of XML — why one bad part halts the whole workbook

Since Excel 2007, .xlsx uses the Office Open XML (OOXML) format wrapped in the Open Packaging Conventions — the same ZIP-of-XML design as .docx and .pptx. Rename a copy to .zip and you can open it: inside sit [Content_Types].xml, a _rels/.rels map, and an xl/ folder holding workbook.xml (the list of sheets and defined names), one xl/worksheets/sheet1.xml per tab (the actual cell grid), xl/sharedStrings.xml, xl/styles.xml, an xl/media/ folder for embedded images, and xl/_rels/workbook.xml.rels tying the sheets to their files.

Two Excel-specific details explain why this error behaves the way it does. First, cell values are split by type: a number lives inline in its worksheet as <c><v>42</v></c>, but text does not — to save space Excel writes every string once into xl/sharedStrings.xml and each text cell only points at it by index (<c t="s"><v>7</v></c> means "the 8th shared string"). Second, XML is strict: one unclosed tag, one stray byte, or a part that stops mid-element makes that part unparseable. So the error has two root causes — the ZIP/OPC container itself is damaged (a bad copy, an interrupted sync, a truncated download) or one XML part is malformed or truncated. When Excel hits either, it will not silently render half a spreadsheet; it stops and offers to "recover the contents of this workbook."

What repair actually gets back

Because the format is layered, repair works at two levels. First the tool treats the file as a ZIP and rebuilds the package — fixing the central directory, re-reading each stored entry, and reassembling a well-formed archive. Then it repairs the OOXML parts inside: it re-validates workbook.xml, each xl/worksheets/sheetN.xml, sharedStrings.xml and styles.xml, closes structures that were left open, and drops fragments that cannot be salvaged so the surviving XML parses cleanly.

In practice this recovers the cells, sheets and values that were fully written. Numbers, dates and booleans are stored inline in each worksheet, so any row that made it to disk comes back. Formulas survive too: the formula text lives in the worksheet as <f>SUM(A1:A9)</f> next to its last cached result, so a repaired sheet reopens with your calculations intact. xl/calcChain.xml — the recalculation order Excel keeps as a cache — is famously the first thing to rot; it is safe to discard because Excel simply rebuilds it on the next open, and dropping that one part often clears the error by itself. Embedded images live as independent files under xl/media/ (PNG, JPEG and so on), so damage to a sheet's XML does not touch them, and an intact picture is carried straight into the rebuilt workbook. All of this runs in your browser tab — no Excel install, no add-in, no server round-trip.

Where the content genuinely stops

Repair recovers what is present; it cannot reconstruct cells that were never written to disk. If a worksheet part was truncated — the save or copy stopped partway — every row after the break point is gone, and the tool can only return the cells up to that cut. That is the honest ceiling on any recovery of this file, ours or Excel's own "recover contents" pass.

The shared-string table is the other Excel-specific catch. Because text cells only hold an index into xl/sharedStrings.xml, if that single part is the damaged or truncated piece you can lose text across every sheet at once while the numbers sit untouched — repair salvages the strings it can read and re-links them, but strings past a truncation in that table are unrecoverable. Pivot tables and charts that cache their source data may need a manual refresh after reopening, and a password-encrypted workbook is wrapped in an encryption container the tool cannot open without the password. When the damage is confined to the wrapper you keep your data; when bytes were never saved, no tool invents them. Because everything happens on-device, the trade is safe for financial models, client lists and records you would never upload — you can watch the Network tab and confirm 0 bytes of the .xlsx ever leave your machine.

What this can and can't fix

Can fix

  • An .xlsx whose ZIP/OPC container was damaged in a bad copy, sync or interrupted download
  • Cells, sheets and values that were fully written before the damage
  • Formulas — the formula text is stored in the worksheet XML and comes back with the sheet
  • Embedded images, which live as separate parts under xl/media/ and usually survive
  • Workbooks Excel will only open through its own 'recover the contents' prompt

Can't fix

  • Rows past the break when a worksheet part was truncated — those cells were never saved
  • Text past a truncation inside xl/sharedStrings.xml, which can blank string cells across every sheet at once
  • Password-encrypted workbooks without the password
  • A file that is 0 bytes or contains no recognizable OOXML parts

If a repair fails, we tell you why (missing data versus broken structure), and you are never charged for a failed repair.

FAQ

Should I click 'Yes' when Excel offers to recover the workbook?

It is worth trying first — Excel's own recovery sometimes succeeds and shows a repair log of what it removed. When it fails, opens a nearly empty workbook, or drops most of your data, rebuilding the OOXML package directly usually recovers more, because it repairs the ZIP container and the XML parts rather than only reading what Excel can already parse.

Will my formulas and formatting come back, or just the numbers?

Usually much more than the numbers. Formula text and number formats live in the XML that repair rebuilds — xl/worksheets/sheetN.xml and xl/styles.xml — so a repaired sheet reopens with its calculations and cell formatting. Excel rebuilds the calcChain.xml recalculation cache automatically on the next open.

Why does Excel say 'unreadable' when I can see the data was there?

Excel parses the internal XML strictly. A single malformed or truncated part — often a xl/worksheets/sheetN.xml or xl/sharedStrings.xml — makes that part unreadable to the parser, so Excel refuses the whole file even though the surviving parts are perfectly fine. Repairing the XML lets it open normally.

Is my workbook uploaded to be repaired?

No. The .xlsx is read from your disk and rebuilt in your browser; nothing is transmitted. You can watch the Network tab and confirm 0 bytes leave — which matters for financial models, client lists and records you would not want copied to someone else's server.

Related: Repair an Excel workbook · "Excel cannot open the file" · "Word found unreadable content"