Hmm I have been on this for over 3 hrs I still haven't gotten the hang of it. I'm new to using Google scripts. So I want to loop through a range, get their values and use that to populate another sheet. I have been able to get the value for the first range but I want it to loop... I'm stuck...here is my code...
function va(){
var app = SpreadsheetApp;
var activeSheet = app.getActiveSpreadsheet().getActiveSheet();
var ts = activeSheet.getRange("D4:D14").getValues();
Logger.log(ts);
var arr = [ts];
var ss = app.getActiveSpreadsheet().getSheetByName("Tutor_Master's");
ss.getRange("B11:B21").setValues(ts);
}