Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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' |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=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...1-1033368.html Dave -- A hint to posters: Specific, detailed questions are more likely to be answered than questions that provide no detail about your problem. "Ted Metro" wrote: 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' |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Day Checking | Excel Discussion (Misc queries) | |||
Error Checking for Duplicates in List | Excel Worksheet Functions | |||
Checking for duplicates - think this is simple | Excel Discussion (Misc queries) | |||
Checking if value is in a list | Excel Worksheet Functions | |||
Add checking | Excel Worksheet Functions |