read_excel
Extract data from Excel files by specifying file path, sheet name, row limits, and header configuration to convert spreadsheet content into readable text format.
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
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | ||
| sheet_name | No | ||
| nrows | No | ||
| header | No |