Home > Blockchain >  Getting Google Form's response spreadsheet link for forms created with FormApp
Getting Google Form's response spreadsheet link for forms created with FormApp

Time:09-14

I can make Google Forms inside GAS, like so.

const form = FormApp.create(formTitle);
const formUrl = form.getEditUrl();

The created forms will have different contents and URLs depending on the run, and also different spreadsheets that will record the responses.

Is it possible to get the links to those spreadsheets with GAS, or does it have to be done manually each time by clicking the Create Spreadsheet button?

CodePudding user response:

Forms hasn't a spreadsheet by default, you have to set the form responses destination, and in order to do that you have to create the spreadsheet.

Reference

Related

  • Related