I am trying to automatically fill in the last row of a Google Sheet into a range from C2:K{{last_row}}
. However, I am not sure how to proceed given my following code:
var dataSpreadsheetUrl = "https://docs.google.com/spreadsheets/sjhsak";
//make sure this includes the '
var ss = SpreadsheetApp.openByUrl(dataSpreadsheetUrl);
var deck = SlidesApp.getActivePresentation();
var sheet = ss.getSheetByName('Form_Responses');
var values = sheet.getRange('C2:K{{last_row}}').getValues();
How would I do this?