Mark duplicate emails

books4cars

Board Regular
Joined
Apr 12, 2007
Messages
200
I have 2 columns and about 7000 rows. Column 1 is name, column 2 is email address.

I want to ensure each email address is associated with only 1 name. Either by conditional formatting or otherwise.

Much obliged.
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Sorting them by email address and looking through. I'm stuck on how else to identify which email addresses need further investigation.
 
Upvote 0
You could, for example, insert a formula in column C:
=COUNTIF(B:B,B1)
and copy down as far as needed. Every entry will display the frequency with which that entry occurs. You could even turn it into a conditional formatting formula for column B:
=COUNTIF(B:B,B1)>1
 
Upvote 0
You could, for example, insert a formula in column C:
=COUNTIF(B:B,B1)
and copy down as far as needed. Every entry will display the frequency with which that entry occurs. You could even turn it into a conditional formatting formula for column B:
=COUNTIF(B:B,B1)>1

THis would tell me if the email address is duplicated in the column, correct? Is there any way to extend it to see if any of instances of the email addresses are next to the same or multile values?

Like the instance below, for example.


John Smith j@smith.com
Joe Smith j@smith.com
 
Upvote 0
And just how likely do you suppose it would be that John Smith and Joe Smith have the same email address? Surely the only possibility for duplicate email addresses with different names is because either one or both email addresses and/or names is incorrect.
 
Upvote 0
And just how likely do you suppose it would be that John Smith and Joe Smith have the same email address? Surely the only possibility for duplicate email addresses with different names is because either one or both email addresses and/or names is incorrect.

Unfortunately, the data I have has numerous instances such as this. I'm trying to clean up the mess.
 
Upvote 0
To find name & email address duplicates, you could use:
=SUMPRODUCT((A:A=A1)*(B:B=B1))
or
=SUMPRODUCT((A:A=A1)*(B:B=B1))> 1
for conditional formatting.

Similarly, to find email address duplicates with different names, you could use:
=SUMPRODUCT((A:A<>A1)*(B:B=B1))
or
=SUMPRODUCT((A:A<>A1)*(B:B=B1))> 1
for conditional formatting.

Finally, to find name duplicates with different email addresses, you could use:
=SUMPRODUCT((A:A=A1)*(B:B<>B1))
or
=SUMPRODUCT((A:A=A1)*(B:B<>B1))> 1
for conditional formatting.
 
Upvote 0

Forum statistics

Threads
1,214,431
Messages
6,119,457
Members
448,898
Latest member
drewmorgan128

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