read_cell
Extract a single cell's value from spreadsheet files. Returns numbers as integers/floats, text as strings, and empty cells as null.
Instructions
Read the value of a single cell.
Returns the cell's value: numbers as int/float, text as string, and empty cells as null.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | Yes | Path to the spreadsheet file | |
| cell | Yes | Cell reference in A1 notation, e.g. 'B3' or '$B$3' | |
| sheet | No | Sheet name. Defaults to the first sheet if omitted. |