XLSX Examples & Downloads
This page is the fastest way to get from docs to something you can open, inspect, diff, or hand to a teammate.
All downloads here come from the actual @paperjsx/json-to-xlsx engine and in-repo fixture set. They are not mock assets.
Quickstart Pack
Use this when you want the smallest possible end-to-end example.
- JSON workbook spec: quickstart-revenue.json
- Rendered workbook: quickstart-revenue.xlsx
The workbook matches the same shape used in XLSX Quickstart.
Native Table Example
Use this when you want a real Excel table with totals-row metadata and table styling.
- JSON workbook spec: native-table.json
- Rendered workbook: native-table-sample.xlsx
This is a good sample for:
- table-compatible downstream editing
- totals-row behavior
- deterministic table-part output
Validation And Hyperlinks Example
Use this when you want to inspect validations, hyperlink relationships, and a slightly richer workbook than the quickstart.
- Rendered workbook: validation-hyperlinks-sample.xlsx
This is useful for:
- dropdown validation testing
- internal and external hyperlink behavior
- import checks across spreadsheet apps
Formulas Example
Use this when you want to inspect formula serialization, cached values, and cross-sheet references.
- Rendered workbook: formulas-sample.xlsx
This is the best sample for:
- basic calculation sanity checks
- cached formula value behavior
- cross-sheet workbook inspection
Template Assembly Pack
Use this when you want to test named-range inspection and template-backed injection.
- Template workbook: template-named-ranges-sample.xlsx
- Injection payload: template-assembly-input.json
This pair is designed for:
SpreadsheetEngine.parseTemplate(...)SpreadsheetEngine.inspectTemplate(...)SpreadsheetEngine.assembleFromTemplate(...)
MCP Spreadsheet Pack
Use this when the workflow starts from agent tooling instead of application code.
- Tool input: mcp-generate-spreadsheet-input.json
- Repair options preset: repair-options.json
These are good starting points for:
generate_spreadsheetvalidate_spreadsheetrepair_spreadsheet
Style And String Strategy Samples
Use these when you want to inspect more of the engine surface area directly in a workbook viewer.
- Styled presets workbook: styled-presets-sample.xlsx
- Inline strings workbook: inline-strings-sample.xlsx
What To Open First
- Need the smallest possible success case: start with quickstart-revenue.xlsx
- Need the most spreadsheet-native artifact: start with native-table-sample.xlsx
- Need template-backed workflows: start with template-named-ranges-sample.xlsx
- Need agent tooling: start with mcp-generate-spreadsheet-input.json
Related Guides
- Want the first render path: XLSX Quickstart
- Need operational safety: Validation & Repair
- Need template strategy: Templates & Large Workbooks
- Need agent workflows: XLSX MCP & Agents