My manager tells me that there is a way to evaluate names that are spelled differently but sound similar in the way they are pronounced. Ideally, we want to be able to evaluate a user-entered search name and return exact matches as well as "similar sounding" names. He called the process "Soundits" but I cannot find any info on Google.
Does this exist? Does anyone know if it is available for VBA (Access)?
Nice question! You're question includes a great example of the idea itself.
There is an algorithm called the Russell Soundex algorithm, a standard technique in many applications, that evaluates names by the phonetic rather than the actual spelling. In this question, Soundits and Soundex are similar sounding names! [EDIT: Just ran the Soundex. Soundits=S532 and Soundex=S532.]
About Soundex:
The Soundex algorithm is predicated on characteristics of English such as:
One warning: Soundex was designed for names. The shorter the better. As a name grows longer, the Soundex becomes less reliable.
Resources:
Code Example:
Below is some VBA code, found via a quick web search, that implements a variation of the Soundex algorithm.
Levenshtein distance
Another method of comparing strings is to get the Levenshtein distance. Here is the example given in VBA, it is taken from LessThanDot Wiki: