Seperate Name Column

A

Amy

I have a column that contains the first and last name.
How can I seperate into two columns, one for first name
and one for last name?
 
L

Lynn Trapp

Then something like this should work:

LastName: Left([EmployeeName],InStr([EmployeeName],",")-1)
FirstName: Mid([EmployeeName],InStr([EmployeeName],",")+2)
 

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