How to match fuzzy duplicates in one column

rnordgr

New Member
Joined
Sep 23, 2016
Messages
2
I have some data in a single column, this data contains titles. Some of the titles are exact matches but others have the same words but just in a different order. Is there a way to find the fuzzy duplicates within a single column?
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
You'll probably have to do this with VBA, maybe via a User Defined Function. If they're the exact same words, you could convert each title into a string containing all the letters from the title in alphabetical order, then compare those. For example, if you have "Tiger boat" and "Boat tiger", each of those would result in "abegiortt" and they'd match.

Am I making sense?
 
Last edited:
Upvote 0
Yeah. I had to convert each title into a alphabetized text string and then compare but it worked just fine. Thanks for the suggestions.
 
Upvote 0

Forum statistics

Threads
1,214,975
Messages
6,122,538
Members
449,088
Latest member
RandomExceller01

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