I'm trying to grab multiple cells from the last row of a Google Sheet upon a form submittal and copy them to a single cell in different sheet.
How do I combine the values in this array into one value? I'd like to put a comma and space between the data.
var daterange = sourcesheet.getRange("H"+source_last_row+":Q"+source_last_row);
I'm not even sure the query is correct. The Logger says "Range". :\
I am grabbing the values below this in the script.
var source_range6_values = daterange.getValues();