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.

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.

This is a good sample for:

  • table-compatible downstream editing
  • totals-row behavior
  • deterministic table-part output

Use this when you want to inspect validations, hyperlink relationships, and a slightly richer workbook than the quickstart.

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.

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.

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.

These are good starting points for:

  • generate_spreadsheet
  • validate_spreadsheet
  • repair_spreadsheet

Style And String Strategy Samples

Use these when you want to inspect more of the engine surface area directly in a workbook viewer.

What To Open First