Parsing Name Fields

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a name field that contains the First and Last Name together. What
function can I use to parsing the First and Last Name. The names are
separated with a "," or a space " ".
 
The InStr function will find an occurrance of a specific character in a
string.

However, what about names with more than one space in them: Mary Lou Retton,
Ludwig von Beethoven, Walter de la Mare, etc.?
 
Either a "," (comma) or a " " (space)? Does that mean you have "Doe, John"
and "John Doe"? And what do you want to do with something like "John Doe,
Jr."?

In addition to Douglas' suggestion, and depending on how new a version of
Access you are using, take a look at the Split() function (but this requires
you to be explicit about the "separator" character).

Good luck!

Jeff Boyce
<Office/Access MVP>
 

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