excel_to_csv
Extract data from an Excel sheet and convert it to CSV text. Provide base64-encoded file, optional sheet index (0-based), and delimiter. Returns CSV content for easy data processing.
Instructions
Extract data from an Excel sheet and return it as CSV text.
Args: excel_base64: Base64-encoded Excel file. sheet_index: Sheet index to extract (0-based, default: 0). delimiter: CSV delimiter (default: comma).
Returns: CSV text content.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| excel_base64 | Yes | ||
| sheet_index | No | ||
| delimiter | No | , |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |