Skip to main content
Version: Streamsheets 3.0

GOOGLE.SHEETS.CELL.DELETE

Premium
Experimental

Delete cells from a Google sheet.

Syntax

=GOOGLE.SHEETS.CELL.DELETE(Spreadsheet-Id, Sheet-Id or Sheet-Name, Cells)

Arguments

NameTypeDescription
Spreadsheet-IdTextThe id of the spreadsheet to delete cells from.
Sheet-Id or Sheet-NameNumber,TextID or name of the sheet to delete cells from.
CellsTextA string conforming to Google cells notation which specifies the cells to delete.

Return

TypeDescription
BooleanTRUE if delete was successful.

Examples

FormulaResultComment
=GOOGLE.SHEETS.CELL.DELETE(B2, "S2", "A1:C3")
TRUEDeletes cells A1:C3 from sheet S2 of spreadsheet with the ID given in B2.