XLSX Viewer (Open Excel Files)
Open an Excel workbook (.xlsx, .xls, .ods) and read it without opening Excel or uploading it anywhere. The viewer shows every sheet as a clean, scrollable table with spreadsheet-style row numbers and column letters, lets you switch between sheets with tabs, and renders each cell using its display formatting — dates, currencies and percentages appear the way the spreadsheet shows them. It all runs in your browser, so a workbook full of private figures never leaves your machine.
Read locally in your browser — nothing is uploaded.
How to use the XLSX Viewer (Open Excel Files)
Choose an .xlsx (or .xls, .ods, .csv) file, or click Example to load a small two-sheet workbook. The viewer parses the workbook and shows a row of tabs, one per sheet; click a tab to switch to that sheet. Each sheet is rendered as a table with a sticky header row of column letters (A, B, C … AA, AB) and a left column of row numbers, exactly as a spreadsheet app lays them out, so you can refer to cells by their usual coordinates.
Cell values are shown using their display formatting rather than the raw stored numbers. A date stored as a serial number appears as a date, a value formatted as currency keeps its symbol, and a percentage shows its percent sign — what you read matches what the spreadsheet's author intended. Very large sheets are capped at the first several hundred rows and dozens of columns to keep rendering instant, with a note telling you the full dimensions so you know how much was truncated. Formulas are not recalculated; instead the viewer shows each formula cell's last cached result, which is the value Excel saved with the file. Everything is parsed locally from the file you selected, so confidential spreadsheets — budgets, payroll, customer lists — are read entirely on your device and never uploaded.
The XLSX format & why a viewer helps
An .xlsx file is the default format Microsoft Excel has used since 2007, and it is also written by Google Sheets, LibreOffice, Numbers and countless reporting tools. Despite the single-file appearance, an .xlsx is actually a ZIP archive containing a set of XML documents: one per worksheet, plus shared files for strings, styles and the workbook's structure. This is the OOXML (Office Open XML) standard. The older .xls format, by contrast, is a single binary file using the legacy BIFF structure, and .ods is the OpenDocument equivalent of .xlsx — another zipped bundle of XML.
A subtle but important detail is how spreadsheets store values versus how they show them. A cell holds a raw value — typically a number or a string — together with a reference to a number format that controls its appearance. Dates are the classic example: Excel stores a date as a count of days since an epoch (so 1 January 2024 is just a number like 45292) and only the format makes it read as a date. Currencies, percentages, and thousands separators work the same way. A viewer that wants to show a spreadsheet the way its author saw it must therefore apply each cell's format, not just print the raw number — otherwise dates turn into mysterious five-digit integers. Formulas add another layer: the file stores both the formula text and the cached result from the last time the spreadsheet was calculated, so a reader can display the result without a calculation engine.
This viewer exists so you can answer the everyday question — what is in this spreadsheet — without launching Excel, without a Google account, and without uploading a file that may contain sensitive figures to an online converter. It reads the workbook with a well-tested spreadsheet parser, lists every sheet, and renders the cells with their display formatting, all in the browser. For building or editing spreadsheets you will still want a real application, but for quickly reading a file someone sent you, checking which sheet holds the numbers you need, or confirming the contents of an export, an in-browser viewer is the fastest and most private option.
Common use cases
- Read a spreadsheet without Excel. Open an
.xlsxsomeone emailed you on a machine that has no Office install and no Google account. - Check an export. Confirm that a report or data dump from another tool produced the rows and columns you expected before importing it elsewhere.
- Inspect multiple sheets quickly. Tab through a multi-sheet workbook to find which sheet holds the figures you need.
- View sensitive data privately. Read a budget, payroll, or customer file locally in the browser instead of uploading it to an online viewer.