> ## Documentation Index
> Fetch the complete documentation index at: https://docs.runpulse.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Spreadsheet Processing

> Configure Extract for Excel workbooks, hidden content, raw values, and inflated used ranges.

Use spreadsheet settings for Excel workbooks where the visual workbook structure matters. This is especially useful for financial models, loss runs, claims exports, underwriting workbooks, and operational reports exported from ERP or BI systems.

[Platform companion sample: Complex Table Document](https://platform.runpulse.com/dashboard/examples/0e36367a-16d2-49c8-99ab-a6fe0df70409)

<img src="https://mintcdn.com/pulseai/OJ897TEZf8bV6lk8/images/platform/spreadsheet-processing-config.png?fit=max&auto=format&n=OJ897TEZf8bV6lk8&q=85&s=a4f4ee66e9ed5b312a88bf1fb576984a" alt="Spreadsheet extraction in the Platform showing workbook tabs and markdown output" width="886" height="884" data-path="images/platform/spreadsheet-processing-config.png" />

The most important settings are:

| Setting                 | Use when                                                                          |
| ----------------------- | --------------------------------------------------------------------------------- |
| `include_hidden_rows`   | Hidden rows contain data your workflow must audit.                                |
| `include_hidden_cols`   | Hidden columns contain calculations, IDs, or source fields.                       |
| `include_hidden_sheets` | The workbook uses hidden support tabs that should be parsed.                      |
| `use_raw_values`        | Downstream systems need exact numeric values instead of display-rounded text.     |
| `only_data_rows`        | The workbook has many empty trailing rows because of formatting or prior exports. |
| `only_data_cols`        | The workbook has many empty trailing columns for the same reason.                 |

```json theme={null}
{
  "file_url": "https://your-storage.example.com/acme-financial-review.xlsx",
  "spreadsheet": {
    "only_data_rows": true,
    "only_data_cols": true,
    "use_raw_values": true
  }
}
```

Here are compact previews from the ACME financial review workbook used for this section:

<img src="https://mintcdn.com/pulseai/OJ897TEZf8bV6lk8/images/platform/spreadsheet-executive-summary.png?fit=max&auto=format&n=OJ897TEZf8bV6lk8&q=85&s=75a0d31ef05d6c7b1f652488187a2bdc" alt="Executive summary sheet preview from the ACME workbook" width="2150" height="606" data-path="images/platform/spreadsheet-executive-summary.png" />

<img src="https://mintcdn.com/pulseai/OJ897TEZf8bV6lk8/images/platform/spreadsheet-key-ratios.png?fit=max&auto=format&n=OJ897TEZf8bV6lk8&q=85&s=d46b40dabdb014de6a669e7a0e259827" alt="Key ratios sheet preview from the ACME workbook" width="2150" height="480" data-path="images/platform/spreadsheet-key-ratios.png" />

<img src="https://mintcdn.com/pulseai/OJ897TEZf8bV6lk8/images/platform/spreadsheet-quarterly-pl-compact.png?fit=max&auto=format&n=OJ897TEZf8bV6lk8&q=85&s=402bfad47014b524ab8ecf01c280a807" alt="Quarterly profit and loss sheet preview from the ACME workbook" width="1237" height="240" data-path="images/platform/spreadsheet-quarterly-pl-compact.png" />

<Note>
  Public cookbook examples are mostly PDFs today. For table-heavy public samples, compare
  [Complex Table Document](https://platform.runpulse.com/dashboard/examples/0e36367a-16d2-49c8-99ab-a6fe0df70409)
  and [Research Report](https://platform.runpulse.com/dashboard/examples/65a31c06-184a-4156-823b-e1686a368b18), then upload your workbook in the Platform for spreadsheet-specific settings.
</Note>

<Card title="Extract API" icon="brackets-curly" href="/api-reference/endpoint/extract#excel-spreadsheet-options">
  See every spreadsheet request option.
</Card>
