View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Shane Devenshire[_2_] Shane Devenshire[_2_] is offline
external usenet poster
 
Posts: 3,346
Default Count Duplicates in text values

Hi,

This depends on what you mean by duplicates, but I suspect this is what you
want:

=COUNTIF(A$2:A2,A2)
but the other option is:
=COUNTIF(A$2:A$501,A2)

In 2007 you can conditionally format to mark duplicates of the formula II
type and you can issue a new command to remove duplicates as defind in
formula I above.

--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"Madiya" wrote:

I have 19 digit text values in column A from A2 to A501.
Col A Col B
8991151420000560945 1
8991151420000560721 1
8991151420000560770 1
8991151420000560770 2
8991151420000560861 1
8991151420000560929 1
8991151420000561125 1
and so on.

I need to count duplicate text for each cell to be desplayed in
adjecent cell (Col B).

Need help with the formula as countif is not working in this
situation.

Regards,
Madiya