TabularJS
All formats

XLS to JSONExcel 97-2003 (XLS)

Legacy binary Excel format.

Binary BIFF-based format used by Excel 97 through 2003. TabularJS decodes BIFF records and PTG tokens to reconstruct formulas and data.

Feature support

Data values
Formulas
Styles
Merged cells
Comments
Column metadata

Example

js
import tabularjs from 'tabularjs';

const result = await tabularjs('legacy-report.xls');
console.log(result.worksheets[0].data);

Why TabularJS for Excel 97-2003 (XLS)?