google-form

Google forms get score of respondent's answer

こ雲淡風輕ζ 提交于 2019-12-13 22:33:51
问题 I write google forms add-on for statistical analysis of responses (average, median, standard deviation, discriminative efficiency and so on). Is it possible to get score of user's answer from gs code? Or maybe exists the method for checking user's response? 回答1: please research before asking. Just a quick glimpse at the documentation shows the entry for getResponses() which shows what you can do with the formResponse object. As you can see you can get every single part of the response. 来源:

HTTP POST to Google Form from iOS App

怎甘沉沦 提交于 2019-12-13 17:16:20
问题 I am working on a POST request and have been using this answer. There is a lot of documentation NSUrlRequest (and connection) but I am having trouble figuring out why the request won't work. I have performed a successful POST using an HTTP Dev Client using this code entry.0.single=name&entry.1.single=location&entry.4.single=phoneNumber&entry.2.single=order????&pageNumber=0&backupCache= The 4 variables (name, location, phoneNumber, order) are all linked to textFields in the app. - (IBAction

Cannot add image from Google Drive to a Google Form using Apps Script

烂漫一生 提交于 2019-12-13 16:15:31
问题 I am trying to programmatically add an image from my Google Drive to a Google form. I can get it to work using a reference to a static image URL by using the google example such as: var img = UrlFetchApp.fetch('https://www.google.com/images/srpr/logo4w.png'); form.addImageItem().setImage(img); This works o.k. but I want to refer to an image in my Google Drive account. If I try and use the image share link to a Google Drive image I get an error: var img = UrlFetchApp.fetch("https://drive

Email verification using google app script and google forms

被刻印的时光 ゝ 提交于 2019-12-13 16:00:29
问题 I have a google form app which has, among others, an email id field.I want to verify that the email entered by user is the email which belongs to him. Pls note: I DO NOT WANT TO VERIFY THE DOMAIN/SYNTAX OF EMAIL. All emails would be gmail ids, so if that helps, is there a way to send a mail validation link to their gmail accounts and on clicking the link, the entry is made to spreadsheet. Else its cancelled. Also the link must be valid for limited time only. 回答1: Yes this is possible. You can

How to repeat a section in Google Forms before submit?

寵の児 提交于 2019-12-13 09:34:11
问题 I'm new here and also new in Google Apps Script. I'm trying to find out how to repeat a section in Google Forms n times and the closest script I found is this one: link But this script is usable in Edit mode, and I need a specific section repeats while someone is responding and how responses will be plotted in Google Spreadheet this way. Can someone help me? Sorry for my English. 回答1: Google Apps Script can't edit the form response view while a respondent is viewing it. To repeat a section,

How to read Google Form Data Using App Script

≡放荡痞女 提交于 2019-12-13 08:48:08
问题 I'm new to App Script. I'm trying to read the submitted data using App Script. I tried to use the answer provided here, but I'm not able to read it. I tried many other method, they are also not working. function myFunction() { var form = FormApp.openById('1_HABIBYRZ-zsEMuzMCnsrAOYFlQSKwaIhmeT1y2SY6Y'); var formResponses = form.getResponses(); MailApp.sendEmail ("test@appirio.com", "Form Submited: Foo feedback " + Date.now(), +formResponses); } I also want to know, how to debug any issue in

Delegate domain wide authority for a script bound to Google Forms

旧巷老猫 提交于 2019-12-13 07:11:27
问题 I want to get and set auto forwarding details for a user in the company domain. My admin made me a delegated admin so that I can fetch user data using AdminDirectory.Users . However, when I try to fetch auto-forwarding/Label/Filter data for a user using their userID, the following error is thrown : Delegation denied for some.user@domain.com This is the line that evoked the error : var labels = Gmail.Users.Labels.list(user.id); It seems that this can be carried out by delegating domain-wide

Adding Tabs to Google Sheets Based on Form Response

谁都会走 提交于 2019-12-13 05:19:12
问题 I am trying to conceptualize my structure and values needed to organize form responses in multiple sheets within a Google Sheet based on the value selected for one of my form question responses ("Location of Change"). I have a checklist that is completed so far as below. I also listed the additional steps and what I think I need to create to achieve what I'm looking for. Can someone guide me in pointing out where I might have issues or a better approach? Open Form - Completed Open Spreadsheet

Google Drive Daily Email Limit?

≡放荡痞女 提交于 2019-12-13 04:55:24
问题 We have a few Google Forms as part of my work. I am using the Form Emailer script so that, when someone fills out the quiz, that person and also a person here in our office will receive an e-mail displaying a summary of their responses. We just had a meeting and so many more people are filling them out right now. My question is, what is the daily e-mail limit when sending in this way, a custom form script? Keeping in mind that two e-mails are being sent with each form completion, one to our

Any way to validate a Google form input?

别等时光非礼了梦想. 提交于 2019-12-13 03:37:07
问题 I want to collect and validate a value (PIN) in a Google Form. The Form has 2 pages, and I'd like the validation to affect form navigation: If PIN matched with a value in Column N of the response sheet, continue to page 2 of the form If PIN not matched, Do not continue. Can this be done with Google Apps Script? 回答1: You are not able to create this type of dynamic form using the Google Forms Service, because there is no interaction between the service and scripts during form entry, except upon