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:

ID
Name
1234
BLUE
1234
BLUE
3456
GREEN
4567
YELLOW
3456
GREEN

<tbody>
</tbody>

What I'm looking in return is:
ID
Name
1234MULTIPLE
3456MULTIPLE
4567
YELLOW

<tbody>
</tbody>

Thank you in advance
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
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,215,999
Messages
6,128,193
Members
449,431
Latest member
Taekwon

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