Remove duplicates replace with

theboyscout

New Member
Joined
Nov 29, 2012
Messages
26
I need to remove all duplicates and replace the value with a new value:

[TABLE="width: 500"]
<tbody>[TR]
[TD]ID
[/TD]
[TD]Name
[/TD]
[/TR]
[TR]
[TD]1234
[/TD]
[TD]BLUE
[/TD]
[/TR]
[TR]
[TD]1234
[/TD]
[TD]BLUE
[/TD]
[/TR]
[TR]
[TD]3456
[/TD]
[TD]GREEN
[/TD]
[/TR]
[TR]
[TD]4567
[/TD]
[TD]YELLOW
[/TD]
[/TR]
[TR]
[TD]3456
[/TD]
[TD]GREEN
[/TD]
[/TR]
</tbody>[/TABLE]

What I'm looking in return is:
[TABLE="width: 500"]
<tbody>[TR]
[TD]ID
[/TD]
[TD]Name
[/TD]
[/TR]
[TR]
[TD]1234[/TD]
[TD]MULTIPLE
[/TD]
[/TR]
[TR]
[TD]3456[/TD]
[TD]MULTIPLE
[/TD]
[/TR]
[TR]
[TD]4567
[/TD]
[TD]YELLOW[/TD]
[/TR]
</tbody>[/TABLE]

Thank you in advance
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
you could add column C

=IF(COUNTIFS(A:A,A2,B:B,B2)>1,"MULTIPLE",B2)

then pivot the data, id and new column in rows.
 
Upvote 0

Forum statistics

Threads
1,225,754
Messages
6,186,825
Members
453,377
Latest member
JoyousOne

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