No he intentado esto, pero creo que probablemente Google Script podría ayudarlo en esto. Encuentre este enlace para crear formularios de Google mediante programación.
https://developers.google.com/apps-script/reference/forms/
Este servicio permite que los scripts creen, accedan y modifiquen los formularios de Google.
// Create a new form, then add a checkbox question, a multiple choice question,
// a page break, then a date question and a grid of questions.
var form = FormApp.create('New Form');
var item = form.addCheckboxItem();
item.setTitle('What condiments would you like on your hot dog?');
item.setChoices([
item.createChoice('Ketchup'),
item.createChoice('Mustard'),
item.createChoice('Relish')
]);
form.addMultipleChoiceItem()
.setTitle('Do you prefer cats or dogs?')
.setChoiceValues(['Cats','Dogs'])
.showOtherOption(true);
form.addPageBreakItem()
.setTitle('Getting to know you');
form.addDateItem()
.setTitle('When were you born?');
form.addGridItem()
.setTitle('Rate your interests')
.setRows(['Cars', 'Computers', 'Celebrities'])
.setColumns(['Boring', 'So-so', 'Interesting']);
Logger.log('Published URL: ' + form.getPublishedUrl());
Logger.log('Editor URL: ' + form.getEditUrl());
Con Google Script, puede acceder a la identificación de correo electrónico de los usuarios registrados con:
// Log the email address of the person running the script.
Logger.log(Session.getActiveUser().getEmail());
Al combinar estas dos funcionalidades, es posible agregar preguntas según los usuarios. Espero que esto te pueda ayudar. Editaré esta publicación con el código adecuado si tengo tiempo.