Return First Duplicated value as 1 and others as zero

noman050

New Member
Joined
Jan 19, 2018
Messages
3
Hi Everyone,

I have a data set where i have duplicate entries. I want to return first duplicate entry as Digit 1 and other duplicated entry of the same name as zero. For example

Apple 1

Apple 0

Kiwi 1

Kiwi 0

Kiwi 0

Apple 1

As you can see in the example the other duplicate entries of Apple and kiwi are tagged as Zero.

Thanks in advance for your Help
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Sorry Guys the last Apple Value is Zero.

This is my first time on thread so cant find the edit option
 
Upvote 0
Hi,

Welcome to Board......

Assuming Data starts from A2 Then enter this formula in B2 and copy down,

=IF(COUNTIF($A$2:$A2,$A2)=1,1,0)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,788
Messages
6,121,603
Members
449,038
Latest member
Arbind kumar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top