HomeGoogle DocsSpreadsheetCount Distinct Values in Google Sheets Pivot Table

Count Distinct Values in Google Sheets Pivot Table

Published on

There is a built-in function for counting distinct values in a Google Sheets Pivot table, which is COUNTUNIQUE.

However, for the unique count of values in the Pivot table, you may need to rely on a helper column in the source data with the top row containing an array formula.

Understanding “Distinct” and “Unique”

Before we delve into these methods, let’s understand the difference between “distinct” and “unique,” as these terms are often used interchangeably.

In the following table, there are 4 distinct names and 3 unique names:

NameDistinctUnique
AnnYes
JasmineYesYes
RoyYesYes
Ann
JoshuaYesYes

The name “Ann” appears twice. When counting distinct names, we will consider this as 1, whereas when counting unique names, we will not consider duplicates.

Counting Distinct Values in Pivot Table

Let’s consider a sample sales report in the range A1:C21 in Sheet1 of Google Sheets, containing columns for area (category), name (employee names), and item (product).

Sample Data 09-04-2024

Unnecessary columns like dates have been removed to avoid clutter.

You can make a copy of the sample sheet below, which will help you follow this tutorial step by step.

Sample Sheet

How do we get the distinct count of employees in each area?

Creating the Pivot Table:

  1. Select the range A1:C21.
  2. Click on Insert > Pivot table.
  3. In the window that appears, ensure the range is set to Sheet1!A1:C21 and select “New sheet” for the inserted pivot table.
  4. Click Create.
Creating Pivot Table in a New Sheet - Settings

Google Sheets will add a new sheet containing a blank report layout.

Adding Fields to the Layout:

We aim to calculate the distinct count of employees by area in the Pivot table. To achieve this:

  1. Drag and drop the ‘Area’ field under “Rows.”
  2. Drag and drop the ‘Name’ field under “Values,” as we need to count these values.

Once you’ve completed these steps, the Pivot table report will be populated with the employee count for each area.

Adding Area and Name Fields to the Empty Pivot Table

Getting the Distinct Count in the Pivot Table:

In the Pivot table values field, select the COUNTUNIQUE function. That’s all.

Distinct Count in Pivot Table in Google Sheets - Settings

Counting Unique Values in Pivot Table

In the above example, we obtained the count of distinct employees (names) in each area using the Pivot table.

However, what if we want to count employees (names) in each area but exclude them from the count if they are engaged in more than one area? Such counting will help you manage your manpower efficiently.

Unfortunately, there is no specific function within the Google Sheets Pivot table for this. Instead, you need to depend on a helper column.

Helper Column:

Insert the following formula in cell D1. This formula will populate D2:D21 with the values 0 or 1.

=ArrayFormula(LET(
      area, A2:A21, 
      name, B2:B21, 
      rc, 
         COUNTIFS(
            area&name, area&name, ROW(area), "<="&ROW(area)
         ), 
      VSTACK(
        "Count D", 
         IF(COUNTIFS(IF(rc=1, name, ""), IF(rc=1, name, ""))=1, 1, 0)
      )
))

Where:

  • A2:A21 represents the area (category) reference.
  • B2:B21 represents the name reference, which is the column for the unique count.

Wherever the formula returns 1, it indicates a unique deployment of an employee in that area.

Unique Count in Pivot Table in Google Sheets - Formula

Pivot Table Settings for Unique Count:

To force the Pivot table to return a unique count instead of a distinct count, make three changes:

  1. When creating the Pivot table, select the range A1:D21.
  2. Drag and drop the “Count D” (helper column) field below values instead of “Name.”
  3. Select SUM instead of COUNTUNIQUE.

Resources

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.

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...

Get Top N Values Using Excel’s FILTER Function

When using the FILTER function in Excel to extract the top N values, it's...

More like this

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...

Google Sheets Bar and Column Chart with Target Coloring

To color each data point in the column or bar chart according to the...

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.