Sets values in a range of a spreadsheet. The caller must specify the spreadsheet ID, range, and a valueInputOption.
Arguments
range
string
Required. The A1 notation of the values to update.
spreadsheetId
string
Required. The ID of the spreadsheet to update.
includeValuesInResponse
boolean
Determines if the update response should include the values of the cells that were updated. By default, responses do not include the updated values. If the range to write was larger than the range actually written, the response includes all values in the requested range (excluding trailing empty rows and columns).
responseDateTimeRenderOption
enum
Determines how dates, times, and durations in the response should be rendered. This is ignored if response_value_render_option is FORMATTED_VALUE. The default dateTime render option is SERIAL_NUMBER.
SERIAL_NUMBER
FORMATTED_STRING
responseValueRenderOption
enum
Determines how values in the response should be rendered. The default render option is FORMATTED_VALUE.
FORMATTED_VALUE
A1
is 1.23
and A2
is =A1
and formatted as currency, then A2
would return "$1.23"
.UNFORMATTED_VALUE
A1
is 1.23
and A2
is =A1
and formatted as currency, then A2
would return the number 1.23
.FORMULA
A1
is 1.23
and A2
is =A1
and formatted as currency, then A2 would return "=A1"
.valueInputOption
enum
How the input data should be interpreted.
INPUT_VALUE_OPTION_UNSPECIFIED
RAW
USER_ENTERED
body
object ( ValueRange
)
Required.
Raised exceptions
ConnectionError
HttpError
TimeoutError
TypeError
ValueError
Response
If successful, the response contains an instance of UpdateValuesResponse
.
Subworkflow snippet
Some fields might be optional or required. To identify required fields, refer to the API documentation .
YAML
- update : call : googleapis.sheets.v4.spreadsheets.values.update args : range : ... spreadsheetId : ... includeValuesInResponse : ... responseDateTimeRenderOption : ... responseValueRenderOption : ... valueInputOption : ... body : majorDimension : ... range : ... values : ... result : updateResult
JSON
[ { "update" : { "call" : "googleapis.sheets.v4.spreadsheets.values.update" , "args" : { "range" : "..." , "spreadsheetId" : "..." , "includeValuesInResponse" : "..." , "responseDateTimeRenderOption" : "..." , "responseValueRenderOption" : "..." , "valueInputOption" : "..." , "body" : { "majorDimension" : "..." , "range" : "..." , "values" : "..." } }, "result" : "updateResult" } } ]

