clear cell value in google sheet by app scripts

Solutions on MaxInterview for clear cell value in google sheet by app scripts by the best coders in the world

showing results for - "clear cell value in google sheet by app scripts"
Juliette
17 Jan 2016
1var sheet = ss.getSheetByName("Questionário DQSA");  
2  var range = sheet.getRange("F1");
3  range.deleteCells(SpreadsheetApp.Dimension.COLUMNS);//F2 becomes the new F1
4