identify similar cell values

G

gxrxba

I have a column in a spreasheet which has about 10000 values. I jus
want to identify cells which have similar values. For eg if 1 0r mor
cells have the same value, I would like to identify those cells. Wha
function should I be using. Thanks in advance
 
D

Dave Peterson

You could use a helper column of formulas:

=countif(a:a,a1)
and drag down.

You'd see the count of how many times each of those values are in your data.

Depending on what you're doing.

I'd insert a helper column and put =row() in B1 and drag down.
copy|paste special|values (in column b)

Then sort by your real column. The like values will group together. And if you
want to return to the previous sort, just sort by column B.
 
Top