Need Help creating a formula to search for duplicates in one column vs the other

kluna90

New Member
Joined
Sep 22, 2021
Messages
4
Office Version
  1. 2019
Platform
  1. Windows
Hi,

I need help creating a formula to compare two different data sets with similar information and to see what values are duplicates... For example If you look below at the screen shot I want to see what funds in column A also show up in the fund2 column (column E).. So I can do a vlookup to figure this out but there has to be a better way no? Like I was thinking I could do and IF statement =IF(A2=E:E. "Duplicate","Unique") this gives me an error though so I assume IF wouldn't work here? Is there a better way of doing this? Thanks for the help!

1632439058711.png
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
=IFERROR(VLOOKUP(A2,$E$2:$E$748,1,FALSE),"Unique") actually this is the formula I did and it seems to work lol
 
Upvote 0
You could also use
Excel Formula:
=IF(COUNTIFS(E:E,A2)=0,"Unique","Duplicate")
 
Upvote 0

Forum statistics

Threads
1,215,800
Messages
6,126,980
Members
449,351
Latest member
Sylvine

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