View Single Post
  #2   Report Post  
DaveB
 
Posts: n/a
Default

Assume your ticket numbers are in the range A1:D1000, this formula will
output a single number to tell you how many duplicates there are located
within that range:

=SUMPRODUCT(--(IF(COUNTIF(A1:D1000,A1:D1000)1,1,0)))

This is an array formula so you will need to use ctrl+shift+enter to enter
it in.

--
Regards,

DaveB


"wonkywombat" wrote:

i have about 5000 numbers(ticket numbers) in block of cells , and i need to
find out if any numbers are duplicated with another in any of the other cells.
how do i go about this?