Similar Cell Data Comparison?

  • Thread starter Thread starter Al Franz
  • Start date Start date
A

Al Franz

Is there any function or add-on that can allow me to compare two cells and
provide some type of similarity score? Would like to determine matches such
as "John Smith" to "Johnny Smith Jr.", or "5006" to 50006" at to flag those
rows some how.

Thanks for any ideas.
 
Hi Al, I don't believe VBA is quite that smart yet. However, if you have
some commonality in the data such as using the first initial and last name
(J. Smith), you could probably write some code to search out those portions
of all names. You could also use the Like operator with wild cards to look
for partial data sets (*smit*). If there is a regular pattern, you can use
Left, Right or Mid functions to capture part of a data set for comparison.
But I don't know of a function that is smart enough to look variations and
typos.
 
For the numbers,
if you know the number is suspose to be a 4 digit number, then you can flag
any 5 numbers.
 

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