Using google apps script and spreadsheet, I have been trying to do a simple thing but can\'t figure out the problem. I have a sheet, with a blank column and a column with te
This is a possible simple script that does what you need. (If your sheet contains formulas or custom function then it should be modified to take it into account)
function test(){
var sh = SpreadsheetApp.getActiveSheet();
var data = sh.getDataRange().getValues(); // read all data in the sheet
for(n=0;n