Skip to main content

Clear cells

Clears the value in cells

Function ClearCells(Val Token, Val Spreadsheet, Val CellsArray, Val Sheet = "") Export

ParameterCLI optionTypeDescription
Token--tokenStringToken
Spreadsheet--spreadsheetStringSpreadsheetID
CellsArray--cellsArray of StringArray of cells like A1 to be cleared
Sheet--sheetnameStringSheet name (first sheet by default)

Returns: Map Of KeyAndValue - serialized JSON response from Google


Code example
  
CellsArray = New Array;
CellsArray.Add("B2");
CellsArray.Add("A3");
CellsArray.Add("B4");

Spreadsheet = "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc";
Sheet = "Sheet2";

Response = OPI_GoogleSheets.ClearCells(Token, Spreadsheet, CellsArray, Sheet); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
CLI command example
    
oint gsheets ClearCells --token %token% --spreadsheet "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc" --cells %cells% --sheetname "Sheet2"

Result
{
"spreadsheetId": "1Pu07Y5UiGVfW4fqfP7tcSQtdSX_2wdm2Ih23zlxJJwc",
"clearedRanges": [
"'Sheet2'!B2",
"'Sheet2'!A3",
"'Sheet2'!B4"
]
}