I am writing a Google Sheets Script to save as Sheet file to a PDF. I want the File Name to be Cell A11 (which is a combination of texts from other cells). So I wrote this:
file.setName(Cell + '.pdf');
My question is: how can I define "Cell" to pull data from A11 from inside the spreadsheet.