google-form

Update Google Forms field based on dynamic data from a Google Sheets spreadsheet

无人久伴 提交于 2020-01-05 03:08:05
问题 In a Google Form we have a pull down selection list. The list of items may change from minute to minute. The master copy of the data is in a column in a google docs spreadsheet. When a user accesses the form, we want them to see the latest copy of the pull down list as is current in the spreadsheet. I don't see an obvious way to do this with triggers. onOpen, for example, only triggers for administrators of the form, not users. Is there a way I can keep this form up-to-date automatically?

How to check if a response is correct?

自闭症网瘾萝莉.ら 提交于 2020-01-05 01:08:09
问题 I want to create a tailor-made feedback sheet for my pupils depending on their answers to questions on a Google Form. When iterating through ItemResponses from a Form response using the following code: function response_deal() { var form = FormApp.openById('bla'); var formResponses = form.getResponses(); for (var i = 0; i < formResponses.length; i++) { var formResponse = formResponses[i]; var itemResponses = formResponse.getItemResponses(); for (var j = 0; j < itemResponses.length; j++) { var

Process multiple-answer questionnaire (from Google Forms) results with pandas

不问归期 提交于 2020-01-04 09:01:08
问题 I have a Google Form which I am using to collect survey data (for this question I'll be using an example form) which has questions which can have multiple answers, selected using a set of checkboxes. When I get the data from the form and import it into pandas I get this: Timestamp What sweets do you like? 0 23/11/2013 13:22:30 Chocolate, Toffee, Popcorn 1 23/11/2013 13:22:34 Chocolate 2 23/11/2013 13:22:39 Toffee, Popcorn, Fruit 3 23/11/2013 13:22:45 Fudge, Toffee 4 23/11/2013 13:22:48

remove selected items from google form dropdown list

生来就可爱ヽ(ⅴ<●) 提交于 2020-01-03 05:48:30
问题 I have been trying to get this to work for a couple of days now and I give up. I want to create a Google form with a drop down list populated form a spreadsheet. I don't what anyone to choose the same as any one else. (like in a potluck situation) example: I am giving away : a comb a brush a bowl full of mush I tell Thomas, Richard and Henry that they can each have one and send them a link to a Google form I created. Tom is quick and opens the form 1st. He enters his name and chooses a comb

How to add a timer to Google Forms for a School Quiz? [closed]

心不动则不痛 提交于 2020-01-02 20:21:48
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed last month . I'm helping a school teacher and we have an English Language Test made using Google Forms which is split into 3 sections. We would like to be able to set a time on each section (e.g. Section A = 10 min, Section B = 10 min Section C = 40 min). We would like the student to be able to

How to add a timer to Google Forms for a School Quiz? [closed]

白昼怎懂夜的黑 提交于 2020-01-02 20:20:04
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed last month . I'm helping a school teacher and we have an English Language Test made using Google Forms which is split into 3 sections. We would like to be able to set a time on each section (e.g. Section A = 10 min, Section B = 10 min Section C = 40 min). We would like the student to be able to

Copying Google Spreadsheet no longer copies linked Form

不打扰是莪最后的温柔 提交于 2020-01-02 09:11:13
问题 In google app script, making a copy of a spreadsheet that contains a linked Form used to also copy the linked Form when you copied between two different Google free consumer accounts. That appears to no longer be the case. In the example below, getFormUrl returns null. What is a work-around to copy the linked Form along with the Spreadsheet like it used to? // from a 2nd google consumer account, get file by ID of a master // spreadsheet in a different user account that contains a linked Form

Retrieve the e-mail address of a Google Form respondent without asking for their e-mail address in the form

孤街浪徒 提交于 2020-01-01 08:44:30
问题 The scenario goes: Via email, a Google Form is sent to a respondent. Via this sent email, the respondent answers the form and sends their response. This form has no email address field. I need to retrieve the respondents e-mail address and add it to the spreadsheet where the Google Form responses are recorded. Via Google Apps script, is it possible to retrieve the respondent's e-mail address in this manner? For specific reasons , I am not allowed to inquire the respondent's e-mail address.

Google Forms embedded in Google Sheets Unclickable - CORS conflict

孤街浪徒 提交于 2019-12-31 06:58:04
问题 I have created a spreadsheet to which I display Google Forms from it using the sandbox, iframe mode. However, the google forms do not respond to clicks, when clicking on the embedded iframe. It seems to be something related to CORS because if I enable my CORS suppresser plugin it becomes clickable. However, I don't want to have to install a CORS plugin on every computer I install the feature. How do I solve this problem to everyone accessing the spreadsheet? function panel(){ var form =

How to pull data from Google Form and display result before submission?

那年仲夏 提交于 2019-12-31 05:14:14
问题 Say I have a google form here: https://docs.google.com/forms/d/1HnATawk6ioE7_EVKrtszxvScjmUSF7_ma0_9XhBZ-hw/viewform The user will input numbers. As a confirmation before they submit the form, I'd like to use those numbers to display the analysis of the data which they can verify before submission. (To be precise, I'd like to display the sum of the first 4 numbers, then the sum of the next 4 numbers, then state which sum is bigger, and by how much) Is there any way to do this? 回答1: What you