I'm currently getting all values from a Google Sheet with the code below, but how can I, after getting all values from there, now set them in another one?
var ss = SpreadsheetApp.openById(ID);
var values = ss.getDataRange().getValues();
var ss1= SpreadsheetApp.openById(ID1);
I wasn't able to do it, is there a way to do it with a for loop?