MajP
You've got your good things, and you've got mine.
- Local time
- Today, 05:06
- Joined
- May 21, 2018
- Messages
- 8,932
Here is supposedly an updated version, but in some cases better and some not.
http://www.utteraccess.com/forum/Soundex-2-t2019164.html
From what I read Soundex was meant for single family surnames. It was not meant for first and last. Now looking at the code and results I can see why you get some strange results. I think the space is the reason that exact matches were not matched, but not sure why that is because you should get no value for the space.
However, my idea would be to create a new function where it splits each word and gets the soundex for each word. Then concatenate them together. I will give that a try as well.
http://www.utteraccess.com/forum/Soundex-2-t2019164.html
From what I read Soundex was meant for single family surnames. It was not meant for first and last. Now looking at the code and results I can see why you get some strange results. I think the space is the reason that exact matches were not matched, but not sure why that is because you should get no value for the space.
Soundex is the name given to a system for coding and indexing family names based on the phonetic spelling of the name. The code consists of the first letter of the family name, followed by 3 digits representing the first three phonetic sounds found in the name. Similar sounding family names have similar Soundex codes. Soundex is used to index individuals for US census and other purposes. Anyone wanting to use US census data to find their ancestors will need to become familiar with Soundex.
However, my idea would be to create a new function where it splits each word and gets the soundex for each word. Then concatenate them together. I will give that a try as well.