Skip to main content
Version: Streamsheets 3.0

GOOGLE.SHEETS.CELL.WRITE

Premium
Experimental

Write cells to a Google sheet.

Syntax

=GOOGLE.SHEETS.CELL.WRITE(Spreadsheet-Id, Sheet-Id or Sheet-Name, Cells, Cell Range or single value)

Arguments

NameTypeDescription
Spreadsheet-IdTextThe id of the spreadsheet to write cells to.
Sheet-Id or Sheet-NameNumber,TextID or name of the sheet to write cells to.
CellsTextA string conforming to Google cells notation which specifies the cells to write.
Cell Range or single valueRangeA single value to write or a cell range which contains the values to write.

Return

TypeDescription
BooleanTRUE if write was successful.

Examples

FormulaResultComment
=GOOGLE.SHEETS.CELL.WRITE(B2, "S2", "A1:C3", D5:F7)
TRUEWrites cells A1:C3 to sheet S2 of spreadsheet with the ID given in B2.