Terrence
Are you absolutely, positively certain that EVERY text string contains the
sequence LastName, FirstName MiddleInitial?
Cher, for example, ...
.... or Jean Claude van Damm
.... or Billy Bob Thorton
If you can, without question, state that every text string has a single
comma in it, placed between the LastName and FirstName (hmmm, what about
John Doe, Jr. ... ??!? Doe, Jr., John), then you could use a query to find
* the string remaining after the comma, then
* that portion of that remainder that happens before the next space
You'd use the InStr(), Left(), Right(), Mid() functions in that query. You
might even need to do it in two steps, first to get the remainder, then to
isolate the FirstName.
Good Luck!
Regards
Jeff Boyce
Microsoft Access MVP
--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.
Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.
You can thank the FTC of the USA for making this disclaimer
possible/necessary.