Count of unique cells?

medwardnfriends

New Member
Joined
Jun 20, 2011
Messages
22
is there a formula to count the unique cells in a column? or formula to assign a binary value to a cell if another cell in the same row is unique to every other cell in its' column? Please help
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
This formula should help you...

=IF(COUNTIF(B:B, B1)>1, 0, 1)

Change B to the Column you want to test for unique values. It will leave a 1 in the cell if that row contains a unique value. Then you can simply SUM this column to determine how many cells were unique in ColB.
 
Upvote 0
the only problem is that I'm trying to count unique projects. Before i implemented your formula, the problem was that projects that had multiple row listings for different aspects of the project were counted multiple times, now these projects are not being counted at all. Is there a way to compensate for this? Replacing the "if true" value of 0 with .5 (or any specific value) does not work because some of the projects are listed more than twice.
 
Upvote 0
is there a formula to count the unique cells in a column? or formula to assign a binary value to a cell if another cell in the same row is unique to every other cell in its' column? Please help

Control+shift+enter, not just enter:

=SUM(IF(FREQUENCY(IF(A1:A50<>"",MATCH("~"&A1:A50,A1:A50&"",0)),ROW(A1:A50)-ROW(A1)+1),1))
 
Upvote 0
is there a formula to count the unique cells in a column? or formula to assign a binary value to a cell if another cell in the same row is unique to every other cell in its' column? Please help
What type of data is in the column? Is it text? Numbers? Both? Are there any empty cells within the data range?

How many rows of data are in the range?
 
Upvote 0
Thank you. How do i modifiy this so that when a new row is added with another unique column, this formula will automatically increase the sum by 1 (or if it is not unique, stay the same)??
 
Upvote 0
Aladin Akyurek said:
Control+shift+enter, not just enter:

=SUM(IF(FREQUENCY(IF(A1:A50<>"",MATCH("~"&A1:A50,A1:A50&"",0)),ROW(A1:A50)-ROW(A1)+1),1))
If there are only 50 rows of data to calculate this formula is simpler, much shorter, doesn't need array entered and is ever so slightly more efficient:

=SUMPRODUCT((A1:A50<>"")/COUNTIF(A1:A50,A1:A50&""))
 
Upvote 0
Thank you. How do i modifiy this so that when a new row is added with another unique column, this formula will automatically increase the sum by 1 (or if it is not unique, stay the same)??

If you are on Excel 2003, convert the range into a list. If on 2007 or later, you can convert the range into a table. Both functionality allows the formula to adjust to changes in the range.

Otherwise, on all versions...

Control+shift+enter, not just enter:

=SUM(IF(FREQUENCY(IF(USED(A:A)<>"",MATCH("~"&USED(A:A),USED(A:A)&"",0)),ROW(USED(A:A))-MIN(ROW(USED(A:A)))+1),1))

The following udf defines the USED function, which you need to add to your workbook as a module:

Function Used(r As Range) As Range
'
' Harlan Grove
' Sun 25 Nov 01
'
Dim q As Range
Set q = r.Parent.UsedRange.Cells(r.Parent.UsedRange.Cells.Count)
Set Used = Intersect(r, r.Parent.Range(r.Parent.Cells(1, 1), q))
End Function
 
Upvote 0
If there are only 50 rows of data to calculate this formula is simpler, much shorter, doesn't need array entered and is ever so slightly more efficient:

=SUMPRODUCT((A1:A50<>"")/COUNTIF(A1:A50,A1:A50&""))
I have used both these methods in the past. Aladin's (I think) is quicker given a larger data set, whereas Biff's is a simpler approach and probably easier to understand from a novice's perspective (of which I am one).

I suppose the debate is whether or not one has a couple of approaches they use, or whether just a single way - for consistency purposes - is always offered up... :confused:

Matty
 
Upvote 0

Forum statistics

Threads
1,215,137
Messages
6,123,254
Members
449,093
Latest member
Vincent Khandagale

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top