Excel Workbook Viewer

Open XLSX, XLSM, or XLS files in your browser, switch sheets, and inspect cells without uploading the workbook.

Open an Excel workbook

View one workbook in your browser. The workbook is not uploaded.

View an Excel workbook without an office suite

This viewer opens one Excel workbook and presents each worksheet as a read-only table. Sheet tabs let you move between worksheets, while fixed row and column headings keep your place as you scroll.

Rows and columns are windowed when a sheet is large, so only the visible part of the table is added to the page. Parsing still uses your device memory, and the practical workbook size depends on the browser and device.

Workbook data stays in the browser

The file is read by SheetJS Community Edition in your browser. The viewer has no upload or server-side workbook processing step:

  • Workbook bytes are read from the file you select on your device.
  • Worksheet values are turned into a table in the page.
  • No request is made with your workbook data.
  • The source code is available under the MIT license.

You can inspect the browser Network panel while opening a workbook to verify that no request carries the file. Read the source.

How to use the viewer

  1. Choose one workbook

    Select an XLSX, XLSM, or XLS file, or drop one onto the page.

  2. Choose a worksheet

    Use the sheet tabs above the table to move between worksheets.

  3. Inspect the cells

    Scroll vertically and horizontally through the read-only table. Close it when you want to open another workbook.

FAQ

Is my workbook uploaded?

No. The workbook is parsed in your browser, and the viewer does not send its contents to a server. You can verify this in the browser Network panel.

Which Excel formats can I open?

The file picker accepts XLSX, XLSM, and legacy XLS workbooks. Password-protected, damaged, or unsupported workbook structures may not open.

How are formulas displayed?

The viewer displays the calculation result stored in the workbook. It does not recalculate formulas, so a result may be missing or out of date if the file was saved without a current cached value.

Can I edit or save the workbook?

No. This tool is for viewing only. It does not edit cells, run macros, or write a workbook file.

Can it show images embedded in a worksheet?

No. SheetJS Community Edition does not process embedded workbook images, so the viewer cannot preview them.

What happens with large worksheets?

The table renders a window of visible rows and columns instead of creating every cell in the page at once. Workbook parsing still uses device memory, so capacity varies by browser and device.