bigtbone
Technical User
- Jul 24, 2001
- 4
I have an imported table with several thousand records into an ms access database that has a table with only fullname in it. I need to build a new table using a make table query that separates fullname into first name, middle initial, last name, and suffix. Here is what I have and need:
Full Name First Mid Last Suffix
Jon Doe Jon Doe
Jon B Doe Jon B Doe
Jon Bob Doe Jon B Doe
Jon Doe Jr Jon Doe Jr
Jon B Doe Jr Jon B Doe Jr
Jon Bob Doe Jr Jon B Doe Jr
I seem to get first name by having the following query
FirstName: Mid$([FullName],1,InStr([FullName]," ")) but I cant seem to get the rest of my name fields working correctly. Can someone help me? Thanks in advance!
Full Name First Mid Last Suffix
Jon Doe Jon Doe
Jon B Doe Jon B Doe
Jon Bob Doe Jon B Doe
Jon Doe Jr Jon Doe Jr
Jon B Doe Jr Jon B Doe Jr
Jon Bob Doe Jr Jon B Doe Jr
I seem to get first name by having the following query
FirstName: Mid$([FullName],1,InStr([FullName]," ")) but I cant seem to get the rest of my name fields working correctly. Can someone help me? Thanks in advance!