Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • Remove Duplicates Example in Excel
  • What-If Analysis: Scenarios and Goal Seek in Excel
  • How to add Trendline to a chart in Excel
  • Add Outline to Data in Excel
  • How to combine 2 or more chart types in a single chart in Excel

References

  • Two-way lookup with VLOOKUP in Excel
  • How to use Excel FORMULATEXT function
  • VLOOKUP function: Description, Usage, Syntax, Examples and Explanation
  • How to retrieve first match between two ranges in Excel
  • How to create dynamic named range with OFFSET in Excel

Data Validations

  • Prevent invalid data entering in specific cells
  • Excel Data validation must not contain
  • Excel Data validation unique values only
  • Excel Data validation specific characters only
  • Excel Data validation only dates between

Count unique values in a range with COUNTIF in Excel

by

This tutorial shows how to Count unique values in a range with COUNTIF in Excel. using the example below;

Formula

=SUMPRODUCT(1/COUNTIF(data,data))

Explanation

If you need to count the number of unique values in a range of cells (named “data” in the example below), you can use a formula that uses COUNTIF and SUMPRODUCT.

How the formula works

Working from the inside out, COUNTIF looks inside the data range and counts the number of times that each individual value appears in data. The result is an array of numbers that might look something like this: {3;3;3;2;2;3;3;3;2;2}.

After COUNTIF is finished the results are used as a divisor with 1 as the numerator. Values that appear in data once appear in the array as 1, but values that appear multiple times will appear as fractional values that correspond to the multiple. (i.e. a value that appears 5 times in data will generate 5 items in the array with a value of 1/5 = .2).

Finally, the SUMPRODUCT function sums all values in the array and returns the result.

Handling blank cells

If data might contain blank cells, you need to adjust the formula as follows:

=SUMPRODUCT(1/COUNTIF(data,data&""))

The data&”” expression prevents zeros from ending up in the array created by COUNTIF when there are blank cells in data. It does this by ensuring that the criteria for an empty cell is “”, and not zero. This is important, because a zero in the divisor will throw a #DIV/0 error. So this version of the formula won’t throw an error when there are blank cells, but it will include blank cells in the count. If you want to exclude blank cells in the count, use:

=SUMPRODUCT((data<>"")/COUNTIF(data,data&""))

Slow Performance?

This is a cool and elegant formula, but it calculates much more slowly than formulas that use FREQUENCY to count unique values. For larger data sets, you may want to switch to a formula based on the FREQUENCY function.

Post navigation

Previous Post:

How to use Excel CHOOSE Function

Next Post:

Customize Ribbon In Excel

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • IFERROR function: Description, Usage, Syntax, Examples and Explanation
  • Complete List of Excel Logical Functions, References and Examples
  • SWITCH function: Description, Usage, Syntax, Examples and Explanation
  • OR function: Description, Usage, Syntax, Examples and Explanation
  • Not Equal To ‘<>‘ operator in Excel

Date Time

  • DAYS360 function: Description, Usage, Syntax, Examples and Explanation
  • Convert date string to date time in Excel
  • DAYS function: Description, Usage, Syntax, Examples and Explanation
  • WEEKDAY function: Description, Usage, Syntax, Examples and Explanation
  • TIME function: Description, Usage, Syntax, Examples and Explanation

Grouping

  • Group numbers with VLOOKUP in Excel
  • Running count group by n size in Excel
  • Categorize text with keywords in Excel
  • Map text to numbers in Excel
  • How to randomly assign data to groups in Excel

General

  • Currency vs Accounting Format in Excel
  • Print Excel Sheet In Landscape Or Portrait
  • How to calculate percent of goal in Excel
  • How to create dynamic named range with INDEX in Excel
  • How to calculate percent of students absent in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning