jonplaca
jonplaca

Reputation: 827

Using Google Forms to write to multiple tables?

I am creating a web project where I take in Form data and write to a SQL database. The forms will be a questionnaire with logic branching. Due to the nature of the form, and the fact that this is an MVP project, I've opted to use an existing form service (e.g Google Forms/Typeform).

I was wondering if it's feasible to have form data submitted to multiple different tables (e.g CustomerInfo, FormDataA, FormDataB, etc.). While this might be possible with a custom form application, I do not think it's possible with Google Forms and/or Typeform.

Does anyone have any suggestions on how to parse user submitted Form data into multiple tables when using Google Forms or Typeform?

Upvotes: 0

Views: 894

Answers (1)

Stefan van Aalst
Stefan van Aalst

Reputation: 778

You can add a script in the Google spreadsheet with an onsubmit trigger. Then you can do whatever you want with the submitted data.

Upvotes: 0

Related Questions