¿Qué estoy haciendo mal? Solo estoy tratando de agregar un valor después de iterar sobre algunas celdas. sin embargo, lo que estoy agregando es algo como esto: [Ljava.lang.Object;@780acde2
function record_ticker(){ var sheet= SpreadsheetApp.getActiveSpreadsheet().getSheetByName('PORTFOLIO'); var date= new Date(); tickerprice=[]; var tickervalue=sheet.getRange(3,1).getValues(); for (cell =0; cell<tickervalue.length; cell++){ console.log(cell); tickerprice.push(cell); } var dest=SpreadsheetApp.getActiveSpreadsheet().getSheetByName('HISTORIC_TICKER'); dest.appendRow([date,tickerprice]); }