I'm trying to get my data to return with the cell that its located in, currently I can get the data to pull back for the values in the range without the cell. Any help is really appreciated!
var rangeValues = worksheet.getRange(1, 1, 2, 2).getValues();
console.log(rangeValues);
Currently Returns - [ 'Becky', '$700' ], [ 'John', '$600' ]
Trying to get - [ 'A1', 'Becky', 'B1', '$700' ] [ 'A2', 'John', 'B2', '$600' ]