write_excel_data
Write a 2D array of values into a specific Excel sheet, targeting a file path and sheet name, with an optional start cell for placement.
Instructions
Write data to an Excel sheet.
Args: path: Path to the .xlsx file sheet_name: Target sheet name data: 2D array of values to write start_cell: Starting cell (e.g., 'A1')
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | ||
| path | Yes | ||
| sheet_name | Yes | ||
| start_cell | No | A1 |