write_cell
Write a value to a specific spreadsheet cell, automatically converting numeric strings to numbers and text to strings.
Instructions
Write a single value to a cell.
Overwrites any existing value. The value is type-coerced: numeric strings become numbers, all else is text.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | Yes | Path to the spreadsheet file | |
| cell | Yes | Target cell in A1 notation, e.g. 'B3' | |
| value | Yes | Value to write. Numeric strings are coerced to numbers, everything else is stored as text. | |
| sheet | No | Sheet name. Defaults to the first sheet if omitted. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |