Excel Write Cell
excel_write_cellWrites a value to a specific cell in an Excel file. Address the cell either with cell in A1 notation (e.g. "B2") or with row+column as 1-based integers.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| row | No | Row number (1-based) — use with `column`, or use `cell` instead | |
| cell | No | Cell in A1 notation, e.g. "B2" (alternative to row+column) | |
| path | Yes | Path to the .xlsx file | |
| value | Yes | Value to write | |
| column | No | Column number (1-based) — use with `row`, or use `cell` instead | |
| confirm | No | Must be true to modify | |
| sheet_name | No | Sheet name (default: first sheet) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| col | Yes | Column that was written (1-based) | |
| row | Yes | Row that was written (1-based) | |
| value | Yes | Value written to the cell | |
| written | Yes | True when the cell was written |