HomeGoogle DocsSpreadsheetUsing GETPIVOTDATA with Grouped Dates in Google Sheets

Using GETPIVOTDATA with Grouped Dates in Google Sheets

Published on

In Google Sheets, we can group a date field using a Pivot Table in various ways, such as by Date, Month, Quarter, Year, and Year-Month. This tutorial explores the utilization of the GETPIVOTDATA function with these grouped dates in Google Sheets.

Throughout this tutorial, I will guide you through four examples. Specifically, we will create four distinct Pivot Tables from a single source dataset and employ the GETPIVOTDATA function to retrieve the necessary aggregated values.

Unfortunately, many users encounter challenges in decoding this process, often stumbling upon #REF! formula errors due to blindly adhering to the function’s syntax. Let’s unravel these common pitfalls:

  1. Original Column Mismatches: The original_column argument ideally should reflect the exact column name from the source dataset. However, ‘Pivot date grouping’ can introduce subtle modifications within the Pivot Table, leading to potential confusion.
  2. Date Criterion Formatting: Whether a date has undergone ‘Pivot date grouping’ or not, it’s crucial to specify it as text within the pivot_item argument.

Let’s delve into the correct way to utilize the GETPIVOTDATA function with grouped dates in Google Sheets.

Sample Data and Pivot Table

Consider the following fictitious sample data with three columns.

CountryDate of TravelNumber of Travelers
FR01/01/20235
FR25/01/202315
FR01/02/202310
IT01/01/20236
IT20/01/20238
IT01/02/202310

Assume the above sample data is located in cell range A1:C7 in “Sheet1.” We are creating the Pivot Table in the same sheet starting from cell A9. Here are the steps to follow:

  1. Move to cell A9.
  2. Click on “Insert” > “Pivot Table.”
  3. In the “Data range” field, enter the correct range A1:C7.
  4. Select “Existing sheet” and enter A9 in the provided field.
  5. Click “Create” to insert the Pivot Table and open the sidebar Pivot Table editor panel.
  6. Drag and drop the field “Date of Travel” below Rows.
  7. Drag and drop the field “Country” under Columns.
  8. Under Values, drag and drop the field “Number of Travelers” and ensure that “Summarize by” is set to SUM.

To access sample Sheets, Pivot Tables, and formulas, please click the button below and follow the on-screen instructions.

Sample Sheet

Using GETPIVOTDATA with Grouped Dates in Rows in Google Sheets

We have a Pivot Table report in Google Sheets that currently groups dates in Rows. How do we use the GETPIVOTDATA function with these grouped dates in Rows?

In the first example, we will not employ manual date grouping, meaning no Month, Year, Quarter, etc. grouping.

Example 1 (Filter by Rows)

(Refer to Sheet1 in the Sample Sheet above)

The following formula retrieves the total number of travelers on 01/02/2023:

=GETPIVOTDATA("SUM of Number of Travelers", A9, "Date of Travel", "01/02/2023")
GETPIVOTDATA with Grouped Dates in Rows in Google Sheets

Formula Explanation:

The formula follows the below syntax:

GETPIVOTDATA(value_name, any_pivot_table_cell, [original_column, …], [pivot_item, …])

Where:

  • GETPIVOTDATA: Retrieves a value from a Pivot Table.
  • “SUM of Number of Travelers” (value_name): This is the name of the data field you want to retrieve, along with the specific aggregation (in this case, the sum) used in the Pivot Table.
  • A9 (any_pivot_table_cell): This refers to the top-left cell of the Pivot Table.
  • “Date of Travel” (original_column): Name of the source data column used for filtering.
  • “01/02/2023” (pivot_item): Date criterion for filtering. Match the format used in the source data.

Key Points:

  1. Adjust cell references and field names based on your Pivot Table structure.
  2. Ensure consistent date formats between the formula and source data.

When using a cell reference for the pivot_item criterion (e.g., G2), present it as text using one of these methods:

  • TEXT function: TEXT(G2, "DD/MM/YYYY") (adjust format as needed).
  • Apostrophe: ' before the date.
  • Format as Plain Text: Apply Format > Number > Plain Text to the cell.

Example 2 (Manual Date Grouping and Filter by Rows)

(Refer to Sheet2 in the Sample Sheet above)

Here, let’s utilize the existing Pivot Table with date grouping.

To manually group dates by month in the Pivot Table:

  1. Right-click on any date in the Pivot Table cell range A11:A14.
  2. Choose “Create pivot date group” > “Month.”

To extract the number of travelers to Italy (IT) in January, use this formula:

=GETPIVOTDATA("SUM of Number of Travelers", A9, "Date of Travel - Month", "Jan", "Country", "IT")

The formula yields the total number of travelers to Italy in January.

Grouped by Month in Pivot Table in Google Sheets

Explanation:

  • GETPIVOTDATA: Retrieves a value from a Pivot Table.
  • “Sum of Number of Travelers” (value_name): Specifies the column header in the Pivot Table, indicating the name of the data field you want to retrieve.
  • A9 (any_pivot_table_cell): Refers to any cell within the Pivot Table, typically the top-left cell.
  • “Date of Travel – Month” (original_column): Use this name as it reflects the grouped date field in the Pivot Table, even though it differs from the source data column name.
  • “Jan” (pivot_item): Date criterion for filtering, matching the grouped month name.
  • “Country” (original_column): Name of the source data column used for filtering.
  • “IT” (pivot_item): Country for filtering.

Key Points:

  1. When using GETPIVOTDATA with manually grouped dates in Google Sheets, it’s important to use the grouped field name exactly as it appears in the Pivot Table, even if it differs from the source data column name. In this case, we have used “Date of Travel – Month” instead of “Date of Travel” (original_column).
  2. Match the pivot_item for the date group (“Jan”) to the displayed month name in the Pivot Table.
  3. Adjust cell references and field names based on your actual Pivot Table structure.

Using GETPIVOTDATA with Grouped Dates in Columns in Google Sheets

This time, we will use different Pivot Table settings. (The first 5 steps are the same as above, but I am repeating them to save your time from scrolling up.)

  1. Move to cell A9.
  2. Click on “Insert” > “Pivot Table.”
  3. In the “Data range” field, enter the correct range A1:C7.
  4. Select “Existing sheet” and enter A9 in the provided field.
  5. Click “Create” to insert the Pivot Table and open the sidebar Pivot Table editor panel.
  6. Drag and drop the field “Country” below Rows.
  7. Drag and drop the field “Date of Travel” under Columns.
  8. Under Values, drag and drop the field “Number of Travelers” and ensure that “Summarize by” is set to SUM.

We will test the GETPIVOTDATA function in this Pivot Table both with and without manual date grouping.

Example 1 (Filter by Columns)

(Refer to Sheet3 in the Sample Sheet above)

Even though the layout is different, we can use the same formula as in “Example 1 (Filter by Rows)” to fetch the total number of travelers on 01/02/2023. This is because the Pivot Table starts in cell A9, and we have not used any other cell reference in the Pivot Table in the formula.

The original_column and pivot_item are the same. But just for example purposes, we will use a different filter criterion.

The following formula will return the number of travels to France on “01/01/2023”:

=GETPIVOTDATA("SUM of Number of Travelers", A9, "Date of Travel", "01/01/2023", "Country", "FR")

Needless to say, you can use this formula with the Pivot Table used in “Example 1 (Filter by Rows)” to obtain the same result.

GETPIVOTDATA with Grouped Dates in Columns in Google Sheets

Formula Explanation:

  • GETPIVOTDATA: Retrieves a value from a Pivot Table.
  • “SUM of Number of Travelers” (value_name): Specifies the column header in the Pivot Table.
  • A9 (any_pivot_table_cell): This refers to the top-left cell of the Pivot Table.
  • “Date of Travel” (original_column): Name of the source data column used for filtering.
  • “01/02/2023” (pivot_item): Date criterion for filtering.
  • “Country” (original_column): Name of the source data column used for filtering.
  • “FR” (pivot_item): Country for filtering.

Example 2 (Manual Date Grouping and Filter by Columns)

(Refer to Sheet4 in the Sample Sheet above)

Let’s apply manual date grouping and explore how to use the GETPIVOTDATA function with manually grouped dates in columns.

Here as well, the formula used in “Example 2 (Manual Date Grouping and Filter by Rows)” will yield the same result.

In that case, we applied Month grouping. Here, we will employ a different grouping, namely “Year-Month.”

  1. Right-click on any date in the above Pivot Table, i.e., “Example 1 (Filter by Columns),” cell range B10:E10.
  2. Choose “Create pivot date group” > “Year-Month.”

Formula:

=GETPIVOTDATA("SUM of Number of Travelers", A9, "Date of Travel - Year-Month", "2023-Jan", "Country", "FR")

This formula will return the number of travels in January 2023 to France.

Grouped by Year-Month in Pivot Table in Google Sheets

If you group the Pivot Table in “Example 2 (Manual Date Grouping and Filter by Rows)” by Year-Month instead of Month and apply the same formula above, you will obtain the same result.

Formula Explanation:

  • GETPIVOTDATA: Retrieves a value from a Pivot Table.
  • “Sum of Number of Travelers” (value_name): Specifies the column header in the Pivot Table.
  • A9 (any_pivot_table_cell): Refers to any cell within the Pivot Table, typically the top-left cell.
  • “Date of Travel – Year-Month” (original_column): Use this name as it reflects the grouped date field in the Pivot Table.
  • “2023-Jan” (pivot_item): Date criterion for filtering, matching the grouped Year-Month name.
  • “Country” (original_column): Name of the source data column used for filtering.
  • “FR” (pivot_item): Country for filtering.

Key Takeaways for GETPIVOTDATA with Grouped Dates

GETPIVOTDATA is a highly useful tool for retrieving values from a Pivot Table. It can be employed with the date field grouped in either rows or columns in the same manner. The formula remains unchanged when the layout undergoes modifications.

However, it is crucial to ensure that the Pivot Table is not relocated when adjusting the layout. If you move it to a different range, you need to correctly specify the any_pivot_table_cell argument in the formula. No other changes are required.

Here are the key takeaways for using GETPIVOTDATA with grouped dates in Google Sheets:

  • You need to correctly specify the original_column and pivot_item arguments based on the date grouping.
  • If no manual date grouping is applied, use the original_column, in our case “Date of Travel,” as the original column and any unique date from this column as the pivot_item, but in the same date format.
  • If manual date grouping is applied, use the original_column as it appears in the Pivot Table, and also use the pivot_item criterion accordingly.

Resources:

  1. Unlock the Power of GETPIVOTDATA Arrays in Google Sheets.
  2. Drill Down in Pivot Table in Google Sheets (Date Field).
  3. Extract Total and Grand Total Rows From a Pivot Table in Google Sheets.
Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

Appointment Schedule Template in Google Sheets

An appointment schedule template in Google Sheets can assist you in efficiently managing your...

Creating Sequential Dates in Equally Merged Cells in Google Sheets

Do you know how to create sequential dates in equally merged cells across a...

Running Total By Month in Excel

This tutorial demonstrates how to calculate the running total by month in a range...

SORT and SORTBY – Excel Vs Google Sheets

While Excel offers the SORT and SORTBY functions for sorting a table, Google Sheets...

More like this

Appointment Schedule Template in Google Sheets

An appointment schedule template in Google Sheets can assist you in efficiently managing your...

Creating Sequential Dates in Equally Merged Cells in Google Sheets

Do you know how to create sequential dates in equally merged cells across a...

Interactive Random Task Assigner in Google Sheets

You have multiple tasks and multiple people. Here's a fun way to randomly assign...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.