Parsing Name Fields

I

iholder

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 " ".
 
D

Douglas J. Steele

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.?
 
J

Jeff Boyce

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>
 
Top