Google Apps Script Coding Examples
Google Apps Script coding examples Add a new column to a Google Sheet This code will add a new column to a Google Sheet. function addColumn() { // Get the sheet object. var sheet = SpreadsheetApp.getActiveSpreadsheet(); // Get the current sheet name. var sheetName = sheet.getName(); // Get the column index of the last column. … Read more