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?
 
Then something like this should work:

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