I have an app script function that includes IDs for both a doc file tmplate and a Google Drive folder location. I want the ID to be dynamic based on a users input via a cell reference in a Google Sheet.
Is it possible to call this value using a cell reference?
Example: Settings!B9 = Google Doc Template ID
//This value should be the id of your document template that we created in the last step
const googleDocTemplate = DriveApp.getFileById('INSERT CELL REFERENCE');
//This value should be the id of the folder where you want your completed documents stored
const destinationFolder = DriveApp.getFolderById('INSERT CELL REFERENCE')