Pages

Showing posts with label google forms. Show all posts
Showing posts with label google forms. Show all posts

Sunday, February 8, 2015

Automatically Create Certificates and Collect Feedback Through Google Forms

At the end of my sessions, the last thing I have participants do is fill out a Google Form to demonstrate the power of Add-ons. Recently, I wanted to start collecting feedback on my sessions, but I knew that I would more than likely forget to send the email out. So, using 2 Google Forms and some add-ons (Autocrat, CopyDown and formMule) I created a process that is totally automated.

For this tutorial, I assume you're already familiar with these tools.

Here are steps:
  1. Provide a link to a pre-filled Google Form. While they'll submit to me their names and email addresses, I'll make sure the form includes the name of the session and the date already filled out (ensures consistency).
     
  2. Upon submission, Autocrat will create a certificate of attendance with each individuals' name, along with the session and date. Autocrat will send out an email with a link to that individual's customized certificate along with instructions on how to download it as a PDF.
     
  3. Later in the day, formMule will be triggered to send a message to participants asking them to provide feedback through a different Google Form. Using the already supplied session name and date, a link to an existing Google Form will be generated. The link will automatically pre-fill out the form with the session name and date.
     
  4. Participants will then be able to submit anonymous feedback through the form with the session name and date already filled out.

For more detailed information on the process, check out the video below:



Many thanks to +Andre Stillman and the New Visions Cloud Lab for these amazing tools!

Friday, August 15, 2014

Get New Spreadsheet Functionality from Your Old Google Sheet Data

In the old version of Google Sheets, if you filtered your data, it would change the view for everyone who was accessing the document. Confusing and frustrating, as your content kept switching on you!

One of the advantages of using the new version of Google Sheets is Filter Views. This tool allows you to
  • filter your information by field content
  • create pre-set views that you can share with others.
Best part of all, it would not affect the view of others!


Video credit: +Google Gooru (http://googlegooru.com)

Using new sheets with your old data

If you have already existing data in the old version of Google Sheets, you don't have to re-create your spreadsheets in the new version (I'm running some Google Apps Scripts that only work in the old version). If all I want to do is manipulate the date for different reports, I can use the ImportRange function to bring the existing data from the old sheets into the new sheets:

=IMPORTRANGE("spreadsheet_key", "range_string")

I just enter the spreadsheet ID number from the old sheet's URL, as well as the sheet name and range of data I want to bring in.

=IMPORTRANGE("1R0nUpLMVmOkygrdo0Hdz""StudentQueries!A1:J10000")

The content from the old sheet now appears in my new sheet. As this is a form that is constantly being added to, I made sure the row number is quite large. With the document open the data may take some time to refresh if the original sheet is being used for a form. Just refresh to get the most up to date information.

How do you use ImportRange?


Video credit to +Google Gooru

Wednesday, September 11, 2013

Send Emails with Google Forms

Google Forms is a great tool for collecting information, but you can also use it as a contact form on your website. Unfortunately, it doesn't email you the contents of the form - at best you can have Google send you a notification when there is a change in the spreadsheet.

That's where scripts come in. Thanks to the genius of others, there are many scripts you can use to extend the functionality of spreadsheets. The one I use is FormEmailer by +Henrique Abreu. This wonderful script makes it easy to send emails with customized messages. Check out the video below and be sure to visit the FormEmailer  site!