read_excel_data
Extract cell values from Excel files with pagination support for large sheets. Specify start row and maximum rows to return.
Instructions
Read cell data from an Excel sheet with pagination for large files.
Returns cell values organized by row with coordinate labels. Supports pagination via start_row and max_rows for efficient handling of large spreadsheets.
@param file_path: Absolute path to the .xlsx file. @param sheet_name: Sheet to read. None = first/active sheet. @param start_row: Starting row number (1-indexed). @param max_rows: Maximum rows to return (default 200). @return: Formatted text table with cell values.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max_rows | No | ||
| file_path | Yes | ||
| start_row | No | ||
| sheet_name | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |