identify similar cell values

  • Thread starter Thread starter gxrxba
  • Start date Start date
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
 
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.
 

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