Finding unique numbers in a column

  • Thread starter Thread starter coolkid397
  • Start date Start date
C

coolkid397

Is there any way to find the number of unique values among a set o
values in a column in an excel sheet. I would also like to know th
number of times each value appears in the column.

Thank
 
There was also a similar thread under Excel Worksheet functions titled
"Delete duplicates".

Solution provided was to use:
Data>Filter>Advanced filter>Copy to another location and unique records
only.

Once u get ur unique numbers in a separate table u can then use
COUNTIF(range,criteria) to count the occurence of each unique number in
the original list.

Cheers.
 
To identify the number of dupes, say in A1:A1000 then use this formula in
another column (Say E2 and copy down)

=COUNTIF($A$1:$A$1000,A1)

Other ways of handling dupes can be found here

http://www.cpearson.com/excel/duplicat.htm

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
(e-mail address removed)
 
Hi!

Assume your list is in the range A1:A100

Count of uniques:

=SUMPRODUCT((A1:A100 said:
I would also like to know the number of times each value appears in the
column.

One way to do this:

Use Data>Advanced Filter to copy unique values to another location. Assume
that new location is B1:B10. In C1 enter this formula and copy down to C10:

=COUNTIF(A$1:A$100,B1)

Biff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top