How to use OFFSET to determine DUPLICATES in a list?

M

myk

Hello,

I have a list of names in column A (a4:a14). In column B I would like to
indicate if the name in column A is a duplicate. Column A is sorted. Below
is the example - I would like to put my OFFSET function in the DUPLICATE
INDICATOR column and use a 1 to indicate the first occurnace of a name and a
0 for indicating a duplicate.

NAME DUPLICATE INDICATOR
Jack
Jack
Jack
Jill
Fred
Fred
Fred
Fred
Mark
Nancy
Nancy

Thank you!! Mike
 
M

Mike H

Hi,

Put this in B4 and drag down

=IF(COUNTIF($A$4:$A$14,A4)>1,"Duplicate","Unique")

Mike
 

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

Top