read_data_from_excel
Read data from an Excel worksheet and retrieve cell values with validation rules. Supports specifying cell range and preview mode.
Instructions
Read data from Excel worksheet with cell metadata including validation rules.
Args:
filepath: Path to Excel file
sheet_name: Name of worksheet
start_cell: Starting cell (default A1)
end_cell: Ending cell (optional, auto-expands if not provided)
preview_only: Whether to return preview only
Returns:
JSON string containing structured cell data with validation metadata.
Each cell includes: address, value, row, column, and validation info (if any).Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filepath | Yes | ||
| sheet_name | Yes | ||
| start_cell | No | A1 | |
| end_cell | No | ||
| preview_only | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |