read_excel
Extract and convert Excel file data into a string for analysis or processing. Specify file path, sheet name, row limit, and header row to customize the output.
Instructions
Read an Excel file and return its contents as a string.
Args:
file_path: Path to the Excel file
sheet_name: Name of the sheet to read (only for .xlsx, .xls)
nrows: Maximum number of rows to read
header: Row to use as header (0-indexed)
Returns:
String representation of the Excel data
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | ||
| header | No | ||
| nrows | No | ||
| sheet_name | No |