Seperate Name Column

  • Thread starter Thread starter Amy
  • Start date Start date
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?
 
Amy,
How is the column formatted? FirstName LastName or LastName, FirstName
 
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

Back
Top