ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Count Different Values in a column (https://www.excelbanter.com/excel-programming/417057-count-different-values-column.html)

KJ MAN[_2_]

Count Different Values in a column
 
I need to know the number of differing entries in a column.
For Example

Name:
George
Carol
Don
George
Don
Carol
Pat
Sam
George

Should return 5 because there are 5 different names.

Bob Phillips[_3_]

Count Different Values in a column
 
=SUMPRODUCT((A2:A200<"")/COUNTIF(A2:A200,A2:A200&""))


--
__________________________________
HTH

Bob

"KJ MAN" wrote in message
...
I need to know the number of differing entries in a column.
For Example

Name:
George
Carol
Don
George
Don
Carol
Pat
Sam
George

Should return 5 because there are 5 different names.




Suranthe de Silva

Count Different Values in a column
 
If the values are in the range A1:A10 then

=SUMPRODUCT((A1:A10<"")/COUNTIF(A1:A10,A1:A10&""))

The first part gives 1 for each cell that is not empty. Then divides it
with how many instances there is of this value.
Summing that gives you the "unique count".

The &"" is to avoid 0 and #DIV/0 when a cell is empty.

Ref: http://www.mrexcel.com/archive2/63500/73502.htm

Happy Programming!
- Suranthe

*** Sent via Developersdex http://www.developersdex.com ***


All times are GMT +1. The time now is 04:30 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com