Ready to get started?

Download a free trial of the Excel Add-In for Google Sheets to get started:

 Download Now

Learn more:

Google Sheets Icon Excel Add-In for Google Sheets

The Google Sheets Excel Add-In is a powerful tool that allows you to connect with live data from Google Spreadsheets, directly from Microsoft Excel.

Use Excel to read, write, and update Google Sheets. Perfect for mass imports / exports / updates, data cleansing & de-duplication, Excel based data analysis, and more!

Excel Spreadsheet Automation with the QUERY Formula



Pull data, automate spreadsheets, and more with the QUERY formula.

The CData Excel Add-In for Google Sheets provides formulas that can edit, save, and delete Google Sheets data. The following three steps show how you can automate the following task: Search Google Sheets data for a user-specified value and then organize the results into an Excel spreadsheet.

The syntax of the CDATAQUERY formula is the following: =CDATAQUERY(Query, [Connection], [Parameters], [ResultLocation]);

This formula requires three inputs:

  • Query: The declaration of the Google Sheets data records you want to retrieve or the modifications to be made, written in standard SQL.
  • Connection: Either the connection name, such as GoogleSheetsConnection1, or a connection string. The connection string consists of the required properties for connecting to Google Sheets data, separated by semicolons.

    You can connect to a spreadsheet by providing authentication to Google and then setting the Spreadsheet connection property to the name or feed link of the spreadsheet. If you want to view a list of information about the spreadsheets in your Google Drive, execute a query to the Spreadsheets view after you authenticate.

    ClientLogin (username/password authentication) has been officially deprecated since April 20, 2012 and is now no longer available. Instead, use the OAuth 2.0 authentication standard. To access Google APIs on behalf on individual users, you can use the embedded credentials or you can register your own OAuth app.

    OAuth also enables you to use a service account to connect on behalf of users in a Google Apps domain. To authenticate with a service account, you will need to register an application to obtain the OAuth JWT values.

    See the Getting Started chapter in the help documentation to connect to Google Sheets from different types of accounts: Google accounts, Google Apps accounts, and accounts using two-step verification.

  • ResultLocation: The cell that the output of results should start from.

Pass Spreadsheet Cells as Inputs to the Query

The procedure below results in a spreadsheet that organizes all the formula inputs in the first column.

  1. Define cells for the formula inputs. In addition to the connection inputs, add another input to define a criterion for a filter to be used to search Google Sheets data, such as ShipCity.
  2. In another cell, write the formula, referencing the cell values from the user input cells defined above. Single quotes are used to enclose values such as addresses that may contain spaces.
  3. =CDATAQUERY("SELECT * FROM Orders WHERE ShipCity = '"&B2&"'","Spreadsheet="&B1&";Provider=GoogleSheets",B3)
  4. Change the filter to change the data.