Code.gs
function logHIST(){
//already got sheet assigned.....
var taskITEMS = userORDER.getRange(2,3).getValue();
var entry = [today,username,"",taskITEMS,"","","",periodLABEL,userBASKET];
history.getRange(lastRow+1,1,1,9).setValues([entry]);
}
So I get the items alright, but it only write the first item in the set. it writes the other entries, such as the name dates and all; but the TaskITEMS only put the first. [[a][b][c]]
The log shows that it has the set though.
basically I need store [[a][b][c]]==>A4 Hope this makes sense. Thanks.