google-form

Send form by email and track responses in spreadsheet

落爺英雄遲暮 提交于 2019-11-27 12:31:52
I'm using a Google Apps Script to send an email out - I know how to do that. I want to embed a "Yes or No" response link or multiple choice question, and have the recipients' responses recorded in a Google spreadsheet. How do I do that? The components involved in this workflow are: A script to generate and send an email with an HTML form. An HTML template for that email, which allows us to customize the email for each recipient. A doPost() function to handle responses. The script must be deployed as a Web App . A spreadsheet to collect responses. The script will be contained in the spreadsheet

Old Google Form redirect after submission

依然范特西╮ 提交于 2019-11-27 12:22:26
I am looking for a solution (code) how to redirect user to a custom thank you page (not default Google's) after submitting the form with Old Google Form. <iframe name="hidden_iframe" id="hidden_iframe" style="display:none;" onload="if(submitted){window.location='http:/...yourthankyoupage.htm';}"> </iframe> <form action="https://spreadsheets.google.com/formResponse?formkey=....." method="post" target="hidden_iframe" onsubmit="submitted=true;"> This code is not working. At least not for me. Any suggestions? tronjavolta is this a form that you've styled yourself? some good reading here: http:/

Make Google Spreadsheet Formula Repeat Infinitely

流过昼夜 提交于 2019-11-27 11:03:56
问题 Okay so I have a Google Form that dumps info into a spreadsheet. On each line I need to have a simple calculation done. The problem is I can't figure out how to get it to repeat a formula on every new line as new lines are added. Yes I know how to use the fill handle to copy formulas down and what not, but I want it to automatically add the formula instead of me manually copying it. For example this is being used to track time so there is a cell for In Time and a cell for Out Time on each row

How to prefill Google form checkboxes?

青春壹個敷衍的年華 提交于 2019-11-27 08:47:18
I have looked at the question " Is it possible to 'prefill' a google form using data from a google spreadsheet? " and the code provided in the answer (thanks Mogsdad) works well for text type Google form questions. My question is: Is it possible to prefill a checkbox type Google form question? For example, if I have an existing spreadsheet with an entry for "Names" and one of the entries is "Fred, Barney" would it be possible, via coding, to have a form prefill with the checkboxes ticked for "Fred" and "Barney" under a "Names" checkbox type Google form question? Thanks, Greig Mogsdad The basic

How to create custom theme for Google Form?

十年热恋 提交于 2019-11-27 06:19:16
问题 I wanted an embed Google Form in my website so i grabbed embed code and pasted it in my page. <iframe src="https://docs.google.com/forms/d/1u1NO8u4vu6Q9XuUNigo4qy22hjvRmL-HFIRVsgiaL9c/viewform?embedded=true" width="760" height="500" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe> (that's what Google gave me) Everything is working fine BUT it's an iframe so I can't edit it's appearance using CSS. Google Docs' deafult themes don't match my site so I want to this page's CSS.

Single Google Form for multiple Sheets

﹥>﹥吖頭↗ 提交于 2019-11-27 04:34:34
Due to ongoing development versioning, plus seemingly insurmountable problems implementing user permissions workarounds, I need to capture form data linked to a sheet which is not exposd to the users. Instead I want to launch the form from a separate spreadsheet app using a custom menu. Yet despite thorough Google searches, and the tantalizingly named 'FormApp.openById' method, I can't find a way to accomplish this. I know I'm off track here; could anyone please point me to the way back? Step 1: Create Form Normal operating procedure - create your form either through a script or using the

Hidden field in a Google Form

眉间皱痕 提交于 2019-11-27 03:55:58
I am adding a unique ID to each submission of the form. Right now, I made that ID the first field, and pre-filled it with the ID, along with a help text asking the user not to modify this field. Is there any option by which I can not show this option to the user? I assume you're only interested in ways to programmatically assign a unique ID before the user fills out your form. No, Google Forms still has no direct support for hidden fields such as you have in HTML Forms. Your only option appears to be the custom styling route, which you're already aware of. Here are two promising ideas that

Google Form API?

丶灬走出姿态 提交于 2019-11-27 03:43:45
问题 I would like to (programmatically) convert a text file with questions to a Google form. I want to specify the questions and the questiontypes and their options. Example: the questiontype scale should go from 1 to 7 and should have the label 'not important' for 1 and 'very important' for 7. I was looking into the Google Spreadsheet API but did not see a solution. (The Google form API at http://code.lancepollard.com/introducing-the-google-form-api is not an answer to this question) 回答1: Google

Display custom message after submitting a Google Form

末鹿安然 提交于 2019-11-27 03:28:28
问题 I have a Google Form that allows user to enter their information. After they submit the form, the data is inserted to a Google spreadsheet as a new row. However I want to show a dynamic message right after the form is submitted, overriding the original "thank you" message. The new message would display the information they just filled in, with an number assigned to him. For example, Mary filled in her data and submit the form. Since Mary is the 5th person to submit this form, the message

How to access or call “Send this form to others”?

我的梦境 提交于 2019-11-27 03:05:35
问题 I have a form attached to a Google Apps spreadsheet. It's a form to let my coworkers submit agenda items to our weekly review meeting. I'm writing a script to automatically email a reminder to the relevant people. To make it less annoying & tedious for them, I'd like to actually embed the form within the email. Google Docs provides a way to manually send a form: Spreadsheet > Form > Send form. However, I can't find any way in the Google Apps Scripts documentation that lets me trigger this