google-form

Is it possible to send a google form with a trigger from a spreadsheet value?

泄露秘密 提交于 2019-12-04 21:30:46
Is it possible to send a google form with a trigger from a spreadsheet value? if so where would I go for help? I Have created a google form that can be viewed here http://www.leadersoftomorrowisn.org/Become_a_Member.html I want to be able to take the responses from question 5 "What Are You interested in?" and use them to send out specific google forms. Is it possible to send a google form with a trigger from a spreadsheet value? if so where would I go for help with that? Best, Maxwell Let's assume that your Become a Member form has a spreadsheet that receives responses, and that you will

How to extract response items from a Google Form

 ̄綄美尐妖づ 提交于 2019-12-04 21:26:07
问题 I have made a form to capture 2 data. Email address. Group which user wants to subscribe to. Each group has their own spreadsheet. [According to the posted code, each has their own sheet within the same spreadsheet .] When a user submits the form, the form should capture the email address, and sends the data to the respective spreadsheet which the user subscribed to. This is what I've done so far. I'm stuck.. Is there a way to retrieve data specifically from a particular textbox/options ..etc

Custom multi-step Google forms

。_饼干妹妹 提交于 2019-12-04 20:52:26
I've done a couple of custom Google forms, where you plunk the <form>...</form> into your own file. They submit just fine. I cant figure out how to apply this to a multi-step or multi-page form. The only solution I can think of is to build it as a giant single form, and .show() and .hide() the necessary bits to make it appear as a multi-step. This is obviously far from ideal. Does anyone have a real solution to this? Here's the expanded explanation of the <form>...</form> that I mentioned before: <script type="text/javascript">var submitted=false;</script> <iframe name="hidden_iframe" id=

Prefill a Google Form using data from the last response

岁酱吖の 提交于 2019-12-04 19:59:02
I am building a Google Form that I am the only one to use. I use the form 2 times a day (more or less) and I would like some of the fields to be prefilled with the value of the last response I gave, because their values are not suppose to change often. I save my responses in a google spreadsheet so I could get them from there but I am very new to Google Apps Scripts and I haven't seen an event that triggers when someone opens a form to answer it yet. I'm not even sure such an event exists... And also, I would like to access my form from always the same URL (so no prefill that way) because I

Appending initial timestamp from Google Form to end of record in order to permanently store create date onFormSubmit

蹲街弑〆低调 提交于 2019-12-04 19:41:18
I need to be able to store (by appending to the record) the create date of google form responses where the initial timestamp does not get overwritten when the form is edited. This form is Hosted on Google and is within a Google Apps for Business environment. This information exists but at some point but gets dumped on form update. It seems like this would have a wide application to people using Google Forms that are edited after their creation for analytical purposes. This Google Docs Forum explains a situation quite similar to mine but didn't include the code they used. I have dug through the

How to add validation to existing google form items via script?

半世苍凉 提交于 2019-12-04 18:34:37
I am trying to add validation, specifically text validation, for my google form text items. However, it looks to me like the 'setValidation()' function only works with items with known type like TextItem . To my understanding, if I pull a form item via 'getItemById()' , I would get a generic item. It still has 'TEXT' type but google script just doesn't see it as a TextItem and therefore the 'setValidation() ' function is not available for it. I have tried doing thing like .asTextItem() with no luck. Here is an example script that fails to run because of an error 'TypeError: Cannot find

How to use Google Forms without iframe?

匆匆过客 提交于 2019-12-04 13:12:01
问题 Some years ago, I found on internet how to use Google forms inside a contact page only using a query in the attribute submit button action without iframe. Now, I can't find it anymore. Is it still possible to use Google forms without iframe? 回答1: I just found it! function postToGoogle() { var field1 = $("input[type='radio'][name='qs1']:checked").val(); var field2 = $('#feed').val(); $.ajax({ url: "https://docs.google.com/forms/d/e/1FAIpQLSdjOTKRb7YiWi8OGPq6M6CRL0TpuAsUKacKp2XgruMbIp4wzg

Is it possible to populate a google form from a google spreadsheet?

眉间皱痕 提交于 2019-12-04 13:08:06
I'd like to create a form that uses the data from the spreadsheet, so that it's dynamic. Is it possible to do this? I haven't been able to find anywhere that describes how, or any examples. All that seems possible is to populate a spreadsheet from a form, which I'll also use but its not the primary concern here. Google Apps Scripts.. finally a well documented way of generating Google forms programmatically. https://developers.google.com/apps-script/reference/forms/ Yes it is. Use a Form script and update the information from the spreadsheet using a trigger on the FORM OPEN. Here is an example

Is there a way to edit css of new google forms?

。_饼干妹妹 提交于 2019-12-04 10:55:27
问题 Before I used to be able to just copy the source code of the form and paste the part between <form></form> into the page and add my own styling. But this doesn't seem to work anymore. Has anyone found a way to still be able to customize google forms? 回答1: Yes, you can easily make the <form> work by following these steps. Create a Google Form. Get the link and open the form in a new tab. Create a barebone form having same items as the Google form. Inspect Google form for action attribute. a.

Google Form output to remote MySQL database

99封情书 提交于 2019-12-04 07:57:58
I have a Google Form I created. I have a website with a remote MySQL database. I would like to embed the Google Form into my site (this I've figured out), however instead of the data from form submission being stored in a Google Spreadsheet(s), I'd like the data to be sent to my MySQL database, to a predefined table designed to accept the data types being collected and validated for in the Google Form. I have researched and come across Google Apps Scripts ( https://developers.google.com/apps-script/guides/jdbc ). My issue is that I'm not experienced with Google Apps Scripts and am seeking