first name / last name

K

Kevin

A name field has names listed 'Last Name, First Name' such
as "Smith, John". What expression can be used to reverse
the order to be 'First Name Last Name', thereby changing
the query (or report) result to be "John Smith"?

Any help is appreciated!
Kevin
 
C

Cheryl Fischer

Mid([NameField], InStr([NameField], ",") + 2) & " " & Left([NameField],
InStr([NameField], ",") - 1)
 

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

Top