ActionGoogle SheetsUpdated September 2026

How do I update cell values in Google Sheets?

Short answer: You can update values in Google Sheets by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Google Sheets Update Values action to a workflow, map its 4 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.

Update Values in Google Sheets — start free
Inputs

The fields this action accepts.

Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.

FieldTypeRequiredDescription
Spreadsheet ID
spreadsheet_id
stringRequiredSpreadsheet ID. Example: 1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgVE2upms
Range
range
stringRequiredRange. Example: Sheet1!A1:D1
Values (JSON 2D array)
values
stringRequired2D array of values matching the range
Value Input Option
valueInputOption
optionsOptionalValue Input Option. Options: User Entered, Raw
Sample request
{
"spreadsheet_id": "e.g. 1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgVE2upms",
"range": "e.g. Sheet1!A1:D1",
"values": "[[\"Updated Name\", \"updated@email.com\", \"2025-01-15\", \"Inactive\"]]",
"valueInputOption": "{{trigger.valueInputOption}}"
}
Returns
{
"updatedRows": 1,
"updatedRange": "Sheet1!A1:D1",
"spreadsheetId": "1BxiMVs...",
"updatedColumns": 4
}

Use these fields in downstream nodes for routing, logging, or error handling.

Triggered by

Apps that pair well as the trigger for Update Values.

Any of these apps can fire this action as part of a workflow.

FAQ

Questions about Update Values.

What does the Update Values action do in Google Sheets?
Updates cell values in a specific range of a Google Sheets spreadsheet. Use value_input_option=USER_ENTERED to evaluate formulas and date strings as a user typing would.
What inputs does Update Values require?
Required: Spreadsheet ID, Range, Values (JSON 2D array). Every input accepts a static value or a variable from any upstream node in your workflow.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if Google Sheets returns an error?
The run history shows the failed step with its input and the error message Google Sheets returned, so you can fix the input and run the workflow again. Automatic retries are built into HTTP steps only, where you can also set your own retry count and delay.
Does Update Values support batch operations?
Run Update Values inside a loop to process each item in an array. TinyCommand does not throttle calls for you, so for large arrays add a Delay step if you need to stay within Google Sheets's rate limits.
More actions

Other Google Sheets actions.

Update Values in Google Sheets — start free