Open .XLSX files online
A .xlsx file is a modern Excel workbook — the format every spreadsheet app has written since 2007. Under the name it is a ZIP archive of XML files: one part per worksheet, plus shared strings, styles, and the formula chain. ZipTool opens it entirely in your browser and renders every worksheet as a proper grid — sticky header row, numbered rows, and a tab bar when the workbook has more than one sheet.
The rendering is values-only and honest about it: each cell shows its last saved value (a formula's cell shows the result Excel stored, never a recalculated one), and each sheet shows its first 1,000 rows with a notice when there are more. Nothing is uploaded — the parser is fetched once and your workbook is decoded on your device, which you can verify by opening the file with Wi-Fi off.
What is a `.xlsx` file?
Office Open XML (OOXML) is the format family behind .xlsx: a ZIP container holding XML parts. workbook.xml lists the sheets, sheetN.xml holds the cells by reference (A1, B12), sharedStrings.xml deduplicates text, and styles.xml carries formatting. That ZIP structure is why renaming a .xlsx to .zip lets any archive tool list its parts — and why a spreadsheet viewer needs a real parser, not a text reader.
.xlsx replaced the binary .xls in Excel 2007 and lifted its hard limits: a worksheet now holds 1,048,576 rows by 16,384 columns (up to column XFD), against the old 65,536 by 256. The format is standardized as ISO/IEC 29500, so Excel, Google Sheets, LibreOffice, and every export library can all write it — which is why .xlsx is the de facto currency of tabular data.
The family has three siblings worth telling apart. .xlsm is the macro-enabled twin — same grid, plus embedded VBA macros (this viewer opens it but never executes anything). .xlsb is a binary variant Excel can write, rarer and deliberately not claimed here. And a password-protected .xlsx is actually an encrypted OLE envelope rather than a plain ZIP — this viewer refuses it with a clear message instead of failing silently.
- Budgets, invoices, and financial models exchanged between companies
- Data exports from analytics platforms, CRMs, and databases
- Project plans, trackers, and inventory sheets
- Class rosters, lab results, and research datasets
How to open a `.xlsx` online
Open ZipTool in a new tab, then drop your .xlsx onto the page — or click to browse for it, or paste a URL. The file opens in the spreadsheet viewer, which lays each worksheet out as a grid with a sticky header, row numbers, and per-sheet tabs, read entirely on your device.
- Drag your
.xlsxonto the page — or click to browse, or paste a URL. - It opens immediately in the spreadsheet viewer, which lays each worksheet out as a grid with a sticky header, row numbers, and per-sheet tabs. No install, no sign-up.
- Read, search, or copy it. Your file never leaves your browser.
Open `.xlsx` without uploading
Most "open xlsx online" sites work by uploading your file to a server and processing it there. ZipTool does the opposite: it loads its parser once, then reads your .xlsx locally in the browser tab. The contents stay on your device.
You can prove that in seconds. Open the page, press F12 for DevTools, switch to the Network tab, and open your file — no request carrying the file's contents is sent. You can also turn off Wi-Fi after the page loads and the file still opens. See security and privacy for the full picture.
Frequently asked questions
Do I need Excel to open an XLSX file?
No. ZipTool decodes the workbook in your browser and lays each worksheet out as a table — no Microsoft 365, no install, and no upload. It is a viewer for reading values, not an editor.
Are formulas recalculated or shown?
Neither recalculated nor displayed as expressions: every cell shows its last saved value. A formula cell displays the result Excel stored when the file was last saved. Nothing in the file is ever executed, which is also the safe way to inspect a workbook you don't trust.
Can I open a password-protected .xlsx?
No. An encrypted workbook is an OLE-wrapped envelope, and this viewer refuses it with a clear notice rather than failing halfway. Save an unencrypted copy first, then drop it here.
What about .xlsm macro files?
A .xlsm opens like any .xlsx — same grid, same values. The embedded macros are never executed and never displayed, so a macro-laden workbook is safe to read here.
How much of a large workbook does this show?
Each sheet renders its first 1,000 rows with a notice when the sheet is longer, and workbooks past 128 MB are refused outright with an honest message — the ceiling is your device's memory, since everything runs locally.