PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Google Spreadsheets?

  1. rhuber
    Member

    Hi. I noticed in the pre-sales forum (about a year ago) that there were plans to add the capability of appending a Google Docs Spreadsheet on user submission. Did that ever make its way into the features? That was a particular feature I've been holding my breath for. ;)

    Thanks!

    Bob

    Posted 11 years ago on Monday June 11, 2012 | Permalink
  2. There is currently no integration with Google Docs.

    ** Moved to feature requests **

    Posted 11 years ago on Wednesday June 13, 2012 | Permalink
  3. ZeadsDead
    Member

    I found this plugin: http://codecanyon.net/item/gravity-forms-connect-to-google-calendar/3598271

    But I need Google spreadsheet integration, not G Calendar integration.

    I also found this: https://zapier.com/zapbook/google-docs/gravity-forms/

    But the product does not look ready to launch yet. (Put your email down to encourage their dev team to hustle and finish!)

    Thanks!

    Posted 11 years ago on Tuesday January 15, 2013 | Permalink
  4. Bump -

    I also would love to have a gravity-forms integration for google spreadsheets. My client wishes to add notes to entries, and having the output sync with a google doc would be an ideal solution.

    Any chance we will see this feature in the near future?

    Thanks.

    Posted 11 years ago on Tuesday January 15, 2013 | Permalink
  5. Would like to see this integration as well.

    Posted 11 years ago on Monday March 4, 2013 | Permalink
  6. I wish this feature were available as well. It's my one frustration with GF.

    Posted 11 years ago on Tuesday April 2, 2013 | Permalink
  7. rhuber
    Member

    Has this generated any interest from Gravity Forms? The reason that I feel it is so ideal is because many website owners never touch the admin side of wordpress. And of those who do, it is often very limited. They don't want to view records on the site or wait for their designated geek to generate a report. If those "live" records could be found on a google spreadsheet (or anyplace outside of wordpress for that matter), then the usefulness of the forms are compounded x100.

    Just my 2 cents. ;)

    Posted 11 years ago on Thursday April 11, 2013 | Permalink
  8. David Peralty

    As far as I know, our development team has not started work on anything that would bring about a Google Spreadsheets integration at this time, nor do I currently know of a third party project to do so. Our Zapier add-on should be released in the next while (might be weeks or months), and this might help get people able to port Gravity Forms entries to Google Docs Spreadsheets.

    Posted 11 years ago on Thursday April 11, 2013 | Permalink
  9. rhuber
    Member

    Zapier add-on would be sweet!

    Posted 11 years ago on Friday April 12, 2013 | Permalink
  10. Really looking forward to the Gravity Forms and Google Spreadsheets integration.

    Posted 11 years ago on Thursday April 18, 2013 | Permalink
  11. NextFab
    Member

    you can integrate it with google spreadsheet with apps script like this:

    1. follow nstructions here:
    http://mashe.hawksey.info/2011/10/google-spreadsheets-as-a-database-insert-with-apps-script-form-postget-submit-method/

    2. create after submission hook

    add_action('gform_after_submission_30', 'post_to_spreadsheet', 10, 2);
    function post_to_spreadsheet($entry, $form) {
    $post_url = 'your google web app URL';
    $body = array(
    'first_name' => $entry['5.3'],
    'last_name' => $entry['5.6'],
    'email' => $entry['7']
    );
    $request = new WP_Http();
    $response = $request->post($post_url, array('body' => $body));

    }

    make sure that headers in your google spreadsheet match $body. for example: first_name, last_name etc.

    and done!

    Posted 10 years ago on Thursday June 27, 2013 | Permalink
  12. Richard Vav
    Administrator

    The Zapier add-on is now out and one of the zaps will allow you to save form submissions to Google Spreadsheets: https://zapier.com/zapbook/gravity-forms/google-docs/16647/save-gravity-forms-submission-to-google-spreadsheet/

    http://www.gravityforms.com/add-ons/zapier/

    Posted 10 years ago on Saturday July 27, 2013 | Permalink

This topic has been resolved and has been closed to new replies.