How to Use the Google Sheets QUERY Function

Last Modified: February 20, 2024 - 13 min read

Hannah Recker

The Google Sheets QUERY function is often described as the most robust function in Sheets. The QUERY function combines the capabilities of many other functions in Google Sheets, including FILTERs, AVERAGEs, SUMs, and more. The function essentially allows you to run SQL-like queries against data tables in Sheets.

Here’s the ultimate guide to the Google Sheets QUERY function. Read on to learn what the Google Sheets QUERY function is, why it’s important, and examples of how to use the function in Sheets.   

What is the Google Sheets QUERY Function? 

The Google Sheets QUERY function empowers you to execute queries written in an SQL-like language called Google Visualization API Query Language in Google Sheets. These queries allow you perform database-type searching in Google Sheets, so you can find, filter, and format data with maximum versatility. 

Specifically, the function allows you to apply a query to a Google Sheets data table. This enables you to extract data subsets from the main dataset. You can think of a query as a combination between a filter and a pivot table. The QUERY function helps you inspect areas of interest within your data to gain better and deeper insights.

QUERY Function: Benefits & Advantages

Using the Google Sheets QUERY function has several benefits, including the following. 

  • QUERY datasets can update in real time, allowing you to refresh your Google spreadsheets on the fly. 
  • You can also reference the QUERY results for your graphs and tables and use them in other Google apps such as Google Slides or Docs. 
  • Updating your QUERY datasets in your spreadsheets will update the corresponding data across the Google apps seamlessly and without error.   
  • The QUERY function saves you from writing individual formulas for each column, so you can avoid manually copying and pasting, or spawning errors. 
  • After writing QUERY functions for specific datasets once, you can use them repeatedly and tweak them accordingly. 

In our work with teams from all over the world, these are some of the most common benefits we’ve seen for the QUERY function, though others certainly exist.

QUERY Function Syntax

The QUERY function syntax generally looks like this:

=QUERY(data, query_string, [headers])

Below is the breakdown of the three arguments:

  • data – This is the range of cells (the data table) you want to analyze.
  • query_string – This contains the query you want to run. 
  • headers – This refers to the number of header rows in your data (with optional parameters).

Let’s take a look at a sample QUERY function:

=QUERY(A2:D345,"SELECT C, E",2)

In this example, the data range is A2:D345. 

The query_string (or query statement) is the string enclosed in quotes. It selects columns C and E from the data in this case.  

The number 2 tells the function that the original dataset contains two header rows. The argument is optional, so Google Sheets will automatically determine it if you omit it.   

Essentially, the function reads the given query in the query_string and applies it to the data. Then, it returns the resulting table acquired after the query runs. 

Below are the typical components of a query_string. 

Clauses

Clauses are parts of a query that let you filter the given data. 

Some clauses allow you to customize how you want to query your data. For instance, using the SELECT clause lets you choose specific subsets of columns from your dataset. 

On the other hand, the WHERE clause filters the selected columns based on a condition to supplement the SELECT clause. 

Aggregate Functions

An aggregate function performs calculations on values. 

Generally, aggregate functions perform the calculation then return a single value. 

Aggregate functions examples include:

  • COUNT – This counts the number of rows in a column (or a subset of a column). 
  • SUM – The SUM function adds all the values in the given column.
  • MIN – This finds the lowest value within a column (or a subset of a column).
  • MAX – The MAX function finds the highest value in a column.
  • AVG – This calculates the average values in a column.    

Aggregate functions must be used together with the GROUP BY clause, or you will get an error. Also, all the aggregate functions ignore NULL values (except for the COUNT function). 

Arithmetic Operations

Arithmetic operations are essentially basic expressions consisting of a constant, variable (or scalar function) and operators such as subtraction(-), addition(+), division(/), multiplication (*), and modulus (%). 

You can use the operators to select data from your main dataset to perform mathematical operations. 

Arithmetic operations can also include comparison operators such as >, <, =, <=, >=.  

What to Consider Before Running a QUERY Function 

Below are a few tips to help ensure your QUERY function runs properly and without any issues. 

  • You can write in upper or lower case (e.g., select or SELECT) since the keywords aren’t case sensitive. 
  • But use column letters in uppercase, or you’ll receive errors. 
  • While you don’t need to use all these keywords, ensure they appear in this order when you do: SELECT, WHERE, GROUP BY, ORDER BY, LIMIT, and LABEL. 

Follow the examples below to learn how to use the Google Sheets QUERY function. 

How to Use the Google Sheets QUERY Function

VIDEO: Step-by-Step Guide to QUERY Function in Google Sheets


Let’s assume our starting data looks like this: 

query function google sheets

We’ll use a named range to identify the data. It makes it cleaner and easier to use in the QUERY function. 

Select your data range and navigate to the top menu to create named ranges. Select Data > Named ranges

how to use query function in google sheets

A side pane will appear on the right side of your Google spreadsheet. Input a name for your data table for easy reference. 

google sheets query function examples

Now we can start leveraging the QUERY function in Google Sheets. 

SELECT Specific Columns 

First, retrieve specific columns from your table with a Query function. Select a cell on the right side of the table (cell F1 in this example) and type in this QUERY function:

=QUERY(countries,"SELECT A, B",1)

A and B refer to the original table’s column references in the QUERY select statement. 

using query function in google sheets

We want to select columns A and B, so your output table should retrieve and display the Rank and Country columns.  

how to use the query function in google sheets

Voila. You’ve just performed your first query. 

Use AI to Automatically Generate QUERY Formulas

You can also use Coefficient’s free Formula Builder to automatically create the formulas in this first example. To use Formula Builder, you need to install Coefficient. The install process takes less than a minute.

First, you’ll get started for free by simply submitted your email.

Follow along with the prompts to install. Once the installation is finished, return to Extensions on the Google Sheets menu. Coefficient will be available as an add-on.

Search for “Coefficient”. Click on the Coefficient app in the search results.

Accept the prompts to install. Once the installation is finished, return to Extensions on the Google Sheets menu. Coefficient will be available as an add-on.

Now launch the app. Coefficient will run on the sidebar of your Google Sheet. Select GPT Copilot on the Coefficient sidebar.

 use the Coefficient GPT Copilot’s Formula builder to calculate the number of comments per post

Then click Formula Builder.

select formula builder

Type a description of a formula into the text box. For this example, type: Run a query on data table named “countries” that outputs column A and B.

Then press ‘Build’. Formula Builder will automatically generate the formula from the first example.

Simply paste your Google Sheets query formula in the desired cell.

SELECT All 

Use the SELECT * statement to retrieve all the columns from the data table. 

Select a cell on the right side of the table (cell F1 in this example). Input the QUERY function using the named range notation:

=QUERY(countries,"SELECT *",1)

google sheets query function select

If you’re not using Named ranges, your formula will look like this instead:

=QUERY(A1:D234,"SELECT *",1)

We’ll use the named range “countries” for the rest of the queries in this guide, but you can use the regular range reference if you want. 

Hit Enter after typing in the Query. You should see the output table. The output from the query is the entire table since SELECT * retrieves all the columns in the countries table.

google sheets query

WHERE Keyword

Use the WHERE keyword in your QUERY function to specify a condition that must be satisfied to filter your data.

Modify the Google Sheets QUERY function we used earlier to select the countries with a population greater than, let’s say, 10 million. 

The Query function should look like this:

=QUERY(countries,"SELECT B, D WHERE D > 10000000",1) 

query google sheets

The WHERE keyword comes after SELECT.  Your output table should look like this. 

google sheets query where

Let’s do another one. 

We’ll use the WHERE keyword to specify Asian countries only in this example.

Modify your formula to this:

=QUERY(countries,"SELECT B, C, D WHERE C = 'Asia' ",1)

Unlike the numeric example earlier, you need to enclose the word Asia in single quotes within the query formula, or you’ll get an error.  

query formula google sheets

Your output table should retrieve all the specific countries in Asia. 

query in google sheets

ORDER BY Keyword

You can use the ORDER BY keyword to sort data with your QUERY function. Specify the column (or columns) to order. This will sort your data in descending or ascending order. The ORDER BY keyword comes after SELECT and WHERE. 

spreadsheet ai
Free AI-Powered Tools Right Within Your Spreadsheet

Supercharge your spreadsheets with GPT-powered AI tools for building formulas, charts, pivots, SQL and more. Simple prompts for automatic generation.

 We’ll sort the data by population (from largest to smallest) in the following example. 

Insert the WHERE keyword into the old query formula. Then add the ORDER BY keyword and specify a descending direction using DESC (descending). 

=QUERY(countries,"SELECT B, C, D ORDER BY D DESC",1)

google sheets query order by

Your output table should look like this:

google sheets query order by

If you want to sort your data by country in ascending order, modify your formula to this:

=QUERY(countries,"SELECT B, C, D ORDER BY B ASC",1)

google sheets query order by descending

The resulting output table should display the countries in ascending order (smallest to largest population). 

google sheets query order by ascending

LIMIT Keyword

If you want to restrict the number of results returned from your data, use the LIMIT keyword in your QUERY function. 

Place the LIMIT keyword after SELECT, WHERE, and ORDER BY. 

For instance, if we want to return only the first 15 results from our data, our formula should be:

=QUERY(countries,"SELECT B, C, D ORDER BY D ASC LIMIT 15",1)

google sheets limit

Your data output table will look like this. 

google sheets query pivot

Arithmetic Functions

You can perform standard mathematical operations on numeric columns using the QUERY function in Google Sheets.

As an example, let’s determine the percentage of the total world population that each country accounts for. 

Divide the population column by the total world population (7,162,119,434). Then, multiply the amount by 100 to calculate the percentages. 

This is what the calculation looks like as a QUERY formula: 

=QUERY(countries,"SELECT B, C, (D / 7162119434) * 100",1)

query in google sheets

The third column in your output table should show the corresponding percentages for each country. You can format the output column to display the numbers up to two decimal places.  

google sheets query formula

LABEL Keyword

Rename your column headings easily using a LABEL keyword in your QUERY function. Place the LABEL keyword after the query statement. 

For instance, you can change the header of the output column (the third column) in the table where we retrieved the population percentages. 

google sheets query label

Modify your formula to this: 

=QUERY(countries,"SELECT B, C, (D / 7162119434) * 100 LABEL (D / 7162119434) * 100 'Percentage'",1)

The output column heading now shows Percentage

google sheets query syntax

Aggregation Functions

Besides calculations, you can use other functions in a QUERY, including average, min, and max. 

In this example, let’s calculate the max, min, and average populations in the “countries” dataset using these aggregate functions in your query.  

=QUERY(countries,"SELECT min(D), max(D), avg(D)",1)

google sheets query max

The Query function returns the original dataset’s min, max, and average populations, so our output should look something like this. 

google sheets query avg

GROUP BY Keyword

You can use the GROUP BY keyword with aggregate functions to summarize your data into groups (similar to how a Pivot table does). 

We’ll summarize the data by continent and count the number of countries (per continent). 

Tweak the query formula and include a GROUP BY keyword. Also, use the COUNT aggregate function to count the number of countries.  

=QUERY(countries,"SELECT C, count(B) GROUP BY C",1)

google sheets query group by

Ensure that each column in the SELECT statement is aggregated (min, max, or counted) or appears after the GROUP BY keyword.  

The output for your QUERY function now appears as:

query function in google sheets

Let’s go over a more complex example. This time, we’ll incorporate multiple types of keywords. 

Tweak the formula to read: 

=QUERY(countries,"SELECT C, count(B), min(D), max(D), avg(D) GROUP BY C ORDER BY avg(D) DESC LIMIT 5",1)

google sheets sql query

Let’s break down the Query function into lines to make it easier to understand.   

=QUERY(countries,

"SELECT C, count(B), min(D), max(D), avg(D)

GROUP BY C

ORDER BY avg(D) DESC

LIMIT 5",1)

The QUERY function summarizes the data for each continent, sorts it from the highest to the lowest average population, and limits the results to the top five.  

google sheets query count

Other keywords you can use in your Google Sheets Query function include OFFSET, OPTIONS, FORMAT, and PIVOT. 

You can also use other functions to add a total row, including using dates as filters in your QUERY formulas. 

Coefficient Simplifies & Streamlines Queries in Google Sheets

The Google Sheets QUERY function is a robust tool, but stale data, manual data updates, and other common spreadsheet limitations can dilute the power of the function. However, new solutions such as Coefficient are erasing these shortcomings. Coefficient is a free Google Sheets add-on that can simplify and streamline querying data in your spreadsheet.  

import data google sheets

Coefficient automatically syncs Google Sheets with your business systems. Now you can connect live data from any system to your spreadsheet in seconds, including HubSpotSalesforceJiraSnowflakeGoogle AnalyticsMySQL, APIs, data warehouses, and databases. These connected spreadsheets enable your QUERY functions in Google Sheets to leverage real-time data at all times.  

soql query google sheets

Coefficient also allows you to run queries in SQL, SOQL, and other query languages against your systems directly from Google Sheets. And with a data inline previewer, Coefficient enables you to query and customize data tables through a no-code, graphical UI. Coefficient helps make the often complex undertaking of querying data easier, whether you want to dive into SQL, or use a point-and-click substitute.       

Google Sheets QUERY Function: The Most Powerful Tool

The QUERY function brings the power of database-style lookups to Google Sheets. Now you can combine the capabilities of some of the most incisive functions in Sheets under a single umbrella. And by adding a solution such as Coefficient, you can unlock the full potential of the Google Sheets QUERY function with AI-powered formulas, connected spreadsheets, real-time data, and more versatile queries. 

Sync Live Data into Your Spreadsheet

Connect Google Sheets or Excel to your business systems, import your data, and set it on a refresh schedule.

Try the Spreadsheet Automation Tool Over 320,000 Professionals are Raving About

Tired of spending endless hours manually pushing and pulling data into Google Sheets? Say goodbye to repetitive tasks and hello to efficiency with Coefficient, the leading spreadsheet automation tool trusted by over 320,000 professionals worldwide.

Sync data from your CRM, database, ads platforms, and more into Google Sheets in just a few clicks. Set it on a refresh schedule. And, use AI to write formulas and SQL, or build charts and pivots.

Hannah Recker Growth Marketer
Hannah Recker was a data-driven growth marketer before partying in the data became a thing. In her 12 years experience, she's become fascinated with the way data enablement amongst teams can truly make or break a business. This fascination drove her to taking a deep dive into the data industry over the past 4 years in her work at StreamSets and Coefficient.
320,000+ happy users
Wait, there's more!
Connect any system to Google Sheets in just seconds.
Get Started Free

Trusted By Over 20,000 Companies