Update Row
update_rowOverwrite cells in a single row from a given start column, updating only the specified columns without affecting the rest of the row.
Instructions
Overwrites cells in a single row, left to right, starting at start_column (default column A). Only the cells covered by values are written — cells outside that span are left untouched, so you can update specific columns without rewriting the whole row.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| values | Yes | 1D array of values written left-to-right starting at `start_column` | |
| row_index | Yes | 1-based row number in the sheet | |
| sheet_name | Yes | Target sheet tab name | |
| spreadsheet | Yes | Target spreadsheet: a full Google Sheets URL (https://docs.google.com/spreadsheets/d/<ID>/edit...) or a bare spreadsheet ID | |
| start_column | No | 1-based column to start writing at (e.g. 3 = column C). Default 1 (column A) |