copy values from column if duplicateds finded

edude

New Member
Joined
Sep 14, 2023
Messages
5
Office Version
  1. 2021
Platform
  1. Windows
  2. MacOS
Hi, I want to find duplicates from Ref A in ref B column. If a duplicate is found in B6 for example (the first one) I want to write in E2 the value from D6, in E3 the value from D5,in E4 the value from D3, E5 should be empty because the are no duplicates...
Can any of you wise savants help me out?

1695221659956.png
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
First, when posting sample data, please either simply copy/paste or use the xl2BB add-in. Otherwise we won't be able to copy and paste the data from an image into a sample workbook so that we can come up with a solution and test it. Also, it always helps to provide the actual expected results (in your example the results for Column E), in addition to your written explanation. It makes things a lot clearer, and it's quicker to understand.

Now, as far a solution, try the following...

edude.xlsm
ABCDE
1Ref ARef BValues Ref BValues Ref A
21184525
3236634
4364566
54234 
65125 
7668645
87823 
985716623
1099444444
1110106868
Sheet1
Cell Formulas
RangeFormula
E2:E11E2=IFERROR(INDEX($D$2:$D$11,MATCH(A2,$B$2:$B$11,0)),"")


Hope this helps!
 
Upvote 0
First, when posting sample data, please either simply copy/paste or use the xl2BB add-in. Otherwise we won't be able to copy and paste the data from an image into a sample workbook so that we can come up with a solution and test it. Also, it always helps to provide the actual expected results (in your example the results for Column E), in addition to your written explanation. It makes things a lot clearer, and it's quicker to understand.

Now, as far a solution, try the following...

edude.xlsm
ABCDE
1Ref ARef BValues Ref BValues Ref A
21184525
3236634
4364566
54234 
65125 
7668645
87823 
985716623
1099444444
1110106868
Sheet1
Cell Formulas
RangeFormula
E2:E11E2=IFERROR(INDEX($D$2:$D$11,MATCH(A2,$B$2:$B$11,0)),"")


Hope this helps!
Thank you internet friend!
 
Upvote 0

Forum statistics

Threads
1,215,128
Messages
6,123,204
Members
449,090
Latest member
bes000

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