checking for duplicates

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a large customer list, and want to check for duplicate records that
might be slightly misspelled.

First I will use a formula that will check the first 8 or 10 characters of a
customer name and look for a match in the list.

Is there a formula that will look at a customer name and see if there is any
other customer that has 80% or 90% of the same letters.

I want to try to catch things like --

'The A One Bank' and 'A One Bank' - recognizing as the same customer

but also catch with the same formula

'The A One Bank' and 'A-One Bank Inc'
 
=IF(ISNUMBER(MATCH(LEFT(A1,8),B1:B100,0)),"MATCH","") will compare the first
8 characters in B1 to the values in B1:B100 and return "match" if a match is
found or else will return nothing if no match is found.

You may also want to play around with the FIND function to get something
more approximate. See here for a discussion:
http://articles.techrepublic.com.com/5100-1035_11-1033368.html

Dave
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top