Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to check how many strings in column A approximately match a string in column B.

Example:

If I have the string "angry_birds_iph_app" in column B, and "angry_birds_iph_app" and "angry_birds_adrd_app" appear somewhere in column A, I would like the function to return 2.

share|improve this question
... You have to be more specific about what you mean by "approximately match" - Will the only difference always only be the "iph" "adrd"? Will they always have the same beginning? Etc... – John Bustos Feb 11 at 22:14
No, they will not always have the same beginning. What I mean by approximate match means that >60% or so of the string matches. It could be facebook_iph_app in in column B, and facebook_web, facebook_adrd_app, and facebook_app appear in column A. In which case, the function would return 3 @JohnBustos – Tom Wall Feb 11 at 22:30
1  
Maybe some thing like stackoverflow.com/questions/4243036/… – Tim Williams Feb 12 at 1:40

1 Answer

Take a look at the Excel Fuzzy Lookup add-in. It is free to download from Microsoft. The tool implements the Levenshtein edit distance algorithm to return a similarity score between rows. Among other customizable features, the tool also allows you to set a threshold for how well the values must match in order to return the approximate result.

Rather than returning the count like you mentioned, the tool will return a table with the most similar match in column A relative to each entry in column B. From there you could simply use a filter and perform a count on the resulting column.

http://www.microsoft.com/en-us/download/details.aspx?id=15011

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.