View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.newusers
Quimera Quimera is offline
external usenet poster
 
Posts: 24
Default Compare adjacent fields in adjacent rows

My apologies - it does work for the row AFTER a duplicate but I also
need to show a duplicate BEFORE a row. i.e. when there are 3 or more
duplicate rows they should all show "Dupe".

Thanks


"Quimera" wrote in message
news:P_s%j.404$i74.309@edtnps91...
Sorry, that didn't seem to work. The comparison fields are text
fields, not number fields. Would that make a difference?

Thanks.

"Max" wrote in message
...
Assuming the 2 source cols are cols B and C, data in row 2 down
Put this in D2:
=IF(COUNTA(B2:C2)=0,"",IF(SUMPRODUCT((B$2:B2=B2)*( C$2:C2=C2))1,"dupe",""))
Copy down to the last row of source data
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Quimera" wrote in message
news:thl%j.317$i74.205@edtnps91...
I need to flag duplicate names in a spread sheet sorted by Surname,
Given Name (separate columns).

In other words...

IF (the surname and the given name in row(n) match the surname and
given name in the row above(n-1) or below(n+1), display "Dupe", else
display " " )

Thank you for your help.

Joan