Counting Unique Values

  • Thread starter Thread starter carl
  • Start date Start date
C

carl

Is there a way to count the number of "unique" values in
column D below ?
A B C D
6 Cancel Time Units Check Robinson
7 05/24/04 10 Good Stevens
8 05/24/04 10 Robinson
9 05/24/04 20 Good Caster

Thank you in advance.
 
Hi
use the following formula
=SUMPRODUCT((D1:D100<>"")/COUNTIF(D1:D100,D1:D100&""))
if D1:D100 is your range with data
 
Back
Top