Answers for "Clear Cell Value In Google Sheet By App Scripts"

1

Clear Cell Value In Google Sheet By App Scripts

var sheet = ss.getSheetByName("Questionário DQSA");  
  var range = sheet.getRange("F1");
  range.deleteCells(SpreadsheetApp.Dimension.COLUMNS);//F2 becomes the new F1
Posted by: Guest on July-04-2021

Code answers related to "Clear Cell Value In Google Sheet By App Scripts"

Code answers related to "Javascript"

Browse Popular Code Answers by Language