5

I have this google form (just using google drive), this is like a test with multiple choices, so the thing is when a user completes the form and clicks on submit button, I want the confirmation page shows the test results.

Is it possible?

I try using creating scripts and using events and triggers, but I'm start to thinking I've misunderstand its usefulness.

Thanks in advance.

Ricardo
  • 7,921
  • 14
  • 64
  • 111

1 Answers1

1

Yes, you can create a form with Google Apps Script and show the results at the end. Events and triggers may not be the right way to go, but you can try your hand at UiService with which you can create your forms.

Srik
  • 7,907
  • 2
  • 20
  • 29
  • Should I create the form via code too?, I've just use Google Drive can you provide any example? – Ricardo Dec 23 '13 at 10:57
  • Yes, you have to create the form via code.As I said, you can use UiService or HTMLService for this purpose. I don't think you can customize the confirmation page too much using Google Drive forms only. As another alternative, you can send an email to the submitter with the results – Srik Dec 24 '13 at 02:05