read_excel_data
Read cell data from Excel sheets with pagination, formatting markers, and automatic skip of hidden rows. Supports large files and reveals author's emphasis marks.
Instructions
Read cell data from an Excel sheet with pagination for large files.
Returns cell values organized by row with coordinate labels and formatting markers ([B]=bold, [S]=strikethrough, [HL:color]=highlight, [C:color]=font color) that reveal the author's emphasis and status marks.
Hidden rows/columns are skipped by default — the author hid them for a reason — except hidden cells that visible formulas depend on, which are kept and marked [HIDDEN-REF].
@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). @param include_hidden: Set true to also read hidden rows/columns. @return: Formatted text table with cell values and formatting markers.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max_rows | No | ||
| file_path | Yes | ||
| start_row | No | ||
| sheet_name | No | ||
| include_hidden | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |