How to Use the Google Sheets QUERY Function (2023)

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.

How to Use the Google Sheets QUERY Function (1)

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.
  • By using the QUERY function, you can import specific rows and columns based on your selected conditions and criteria.
  • 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 >, <, =, <=, >=.

(Video) Google Sheets Query Function Explained

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

First Step: Identify Data with Ranged Name

Let’s assume our starting data looks like this:

How to Use the Google Sheets QUERY Function (2)

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 the Google Sheets QUERY Function (3)

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

How to Use the Google Sheets QUERY Function (4)

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

How to Use the Google Sheets QUERY Function (5)

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.

How to Use the Google Sheets QUERY Function (6)

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 Google Sheets QUERY Function (7)

Voila. You’ve just performed your first query.

Over 60K pros building reports use Coefficient to automate business systems data into their Google Sheets

Learn More

"What an amazing app! Coefficient makes integrating some of the most complex systems unbelievably simple! Set up your integrations in less than a minute."

Yonatan Schvimer

How to Use the Google Sheets QUERY Function (8)

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:

(Video) Google Sheets QUERY Function Tutorial - SELECT, WHERE, LIKE, AND, OR, LIMIT statements - Part 1

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

How to Use the Google Sheets QUERY Function (9)

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.

How to Use the Google Sheets QUERY Function (10)

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)

How to Use the Google Sheets QUERY Function (11)

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

How to Use the Google Sheets QUERY Function (12)

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.

How to Use the Google Sheets QUERY Function (13)

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

How to Use the Google Sheets QUERY Function (14)

How to Use the Google Sheets QUERY Function (15)

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.

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)

How to Use the Google Sheets QUERY Function (16)

Your output table should look like this:

How to Use the Google Sheets QUERY Function (17)

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)

(Video) How to Use Google Sheet's QUERY Function - SELECT, WHERE, LIKE, GROUP BY, PIVOT

How to Use the Google Sheets QUERY Function (18)

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

How to Use the Google Sheets QUERY Function (19)

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)

How to Use the Google Sheets QUERY Function (20)

Your data output table will look like this.

How to Use the Google Sheets QUERY Function (21)

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)

How to Use the Google Sheets QUERY Function (22)

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.

How to Use the Google Sheets QUERY Function (23)

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.

How to Use the Google Sheets QUERY Function (24)

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.

How to Use the Google Sheets QUERY Function (25)

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)

How to Use the Google Sheets QUERY Function (26)

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

(Video) How to use the QUERY formula in Google Sheets

How to Use the Google Sheets QUERY Function (27)

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)

How to Use the Google Sheets QUERY Function (28)

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:

How to Use the Google Sheets QUERY Function (29)

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)

How to Use the Google Sheets QUERY Function (30)

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.

How to Use the Google Sheets QUERY Function (31)

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.

How to Use the Google Sheets QUERY Function (32)

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

How to Use the Google Sheets QUERY Function (33)

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 connected spreadsheets, real-time data, and more versatile queries.

Videos

1. QUERY Complete guide: Google Sheets' most complex function
(David Benaim)
2. Google Sheets QUERY FUNCTION OR AND LOWER LIKE CONTAINS MATCHES LIMIT ORDER BY GROUP BY LABEL DATE
(Vincent Arif8888)
3. QUERY Function - Variables - Google Sheets
(Learn Google Sheets & Excel Spreadsheets)
4. QUERY - Drop Down List to Filter Data - Google Sheets
(Learn Google Sheets & Excel Spreadsheets)
5. Google Sheets QUERY Function Tutorial - Advanced Contains with Matches & Regular Expression - Part 2
(Learn Google Sheets & Excel Spreadsheets)
6. Google Sheet Query function and filtering using checkbox
(TopTech KIT (Tech simplified))

References

Top Articles
Latest Posts
Article information

Author: Barbera Armstrong

Last Updated: 07/09/2023

Views: 5964

Rating: 4.9 / 5 (79 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Barbera Armstrong

Birthday: 1992-09-12

Address: Suite 993 99852 Daugherty Causeway, Ritchiehaven, VT 49630

Phone: +5026838435397

Job: National Engineer

Hobby: Listening to music, Board games, Photography, Ice skating, LARPing, Kite flying, Rugby

Introduction: My name is Barbera Armstrong, I am a lovely, delightful, cooperative, funny, enchanting, vivacious, tender person who loves writing and wants to share my knowledge and understanding with you.