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)
 
Top