Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Counting Unique Values.
Written by Allen Wyatt (last updated June 23, 2020)
This tip applies to Excel 97, 2000, 2002, and 2003
Sometimes you need to know the number of unique values in a range of cells. For instance, suppose that an instructor was teaching the following classes:
104-120 104-101 104-119 104-120
In this case there are three unique values. There is no intuitive worksheet function that will return a count of unique values, which makes one think that a user-defined function would be the logical approach. However, you can use an array formula to very easily derive the desired information. Follow these steps:
=SUM(1/COUNTIF(MyRange,MyRange))
{=SUM(1/COUNTIF(MyRange,MyRange))}
That's it! The cell now contains the number of unique name values in the specified range. This approach is not case-sensitive, so if you have two values that differ only in their capitalization (ThisName vs. THISNAME), they are both counted as a single unique value. In addition, there can be no blank cells in the range. (Having a blank cell returns a #DIV/0 error from the formula.)
If your particular needs require that your list contain blanks (but you don't want them counted) and you want the evaluation to be case-sensitive, then you must turn to a macro. The following macro, CountUnique, will do the trick:
Function CountUnique(ByVal MyRange As Range) As Integer Dim Cell As Range Dim J As Integer Dim iNumCells As Integer Dim iUVals As Integer Dim sUCells() As String iNumCells = MyRange.Count ReDim sUCells(iNumCells) As String iUVals = 0 For Each Cell In MyRange If Cell.Text > "" Then For J = 1 To iUVals If sUCells(J) = Cell.Text Then Exit For End If Next J If J > iUVals Then iUVals = iUVals + 1 sUCells(iUVals) = Cell.Text End If End If Next Cell CountUnique = iUVals End Function
Simply put an equation similar to the following in a cell:
=CountUnique(MyRange)
The value returned is the number of unique values, not counting blanks, in the range.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2337) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Counting Unique Values.
Save Time and Supercharge Excel! Automate virtually any routine task and save yourself hours, days, maybe even weeks. Then, learn how to make Excel do things you thought were simply impossible! Mastering advanced Excel macros has never been easier. Check out Excel 2010 VBA and Macros today!
Remember your number line from your early years in school? Some numbers can be below zero (negative numbers) and others ...
Discover MoreSometimes it is helpful to see the actual formulas in a cell, rather than the results of those formulas. Here's how to ...
Discover MoreISBN numbers are used to denote a unique identifier for a published book. If you remove the dashes included in an ISBN, ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2015-10-29 07:15:59
Michael (Micky) Avidan
@Scott Renz.
I strictly DON'T recommend to use helper columns where they are not needed (in fact they are not needed in 99.99% of the situations).
Have you tried my suggestion ?
--------------------------
Michael (Micky) Avidan
“Microsoft® Answers" - Wiki author & Forums Moderator
“Microsoft®” MVP – Excel (2009-2016)
ISRAEL
2015-10-28 11:32:58
Scott Renz
Hi Micky
I think that if I did not want it to count the blank one I would make the bottom one be:
=COUNTIFS(H2:H95,0,G2:G95,"<>")
2015-10-27 06:30:32
Michael (Micky) Avidan
@Scott Renz,
Take a look at the linked picture which demonstrates a Unique count WITHOUT referring to blank cells:
http://screenpresso.com/=sOlEc
--------------------------
Michael (Micky) Avidan
“Microsoft® Answers" - Wiki author & Forums Moderator
“Microsoft®” MVP – Excel (2009-2016)
ISRAEL
2015-10-26 11:39:06
Scott Renz
I have values in the range G2 to G95 that I want to count unique values.
In cell H2 I have placed the formula:
=SUMPRODUCT(--($G$1:G1=G2))
And drag copied it down to all the cells in the H column through H95.
Then in H96 I place the formula below to show the count of unique cells and have no problem with blank cells.
It counts blank for 1 unique value if there is at least one blank and adds it to the total.
=COUNTIF(H2:H95,0)
2015-10-25 06:19:32
Another approach, is to extract unique values, to a near by empty column, using advanced filtering and counting the extracted records. This will give you the desired count and allows to visualize the unique values.
An interesting plus, is that you can sort the extracted values to your needs
A simple macro allows to automate the process
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments