I have an access orders database containing 500+ customer names in a field called "CustomerName"
The problem is that as orders get entered, our sales team sometimes types the names differently. ("ACME Inc" vs "ACME, Inc.") So now I have several customers who are actually the same company, but appear differently.
So far I've written a query that shows distinct CustomerName values, and now I need a query that can basically go through all of these and show me where the names are similar. Perhaps if the first ten letters of the name matches? Or ideally, if a certain percentage of the letters of the name match.
I'm at a loss on how to do this, any help is appreciated.
Thanks so much!