How do I separate first and last name?

Noreene Patrick

Registered User.
Local time
Today, 13:38
Joined
Jul 18, 2002
Messages
223
I have imported info from Excel into a table in Access...But, the name field has last name, first name in one field and I want it to have last name in one field and first name in next field...I know how to concantenate first and last name but how do I UN-concantenate?

Thanks for your help.

Noreene
 
MyName="The Mailman"
?Left(MyName,instr(myname," ") )
The
?Mid(myname,instr(myname," ")+1)
Mailman

MyName="Mailman"
?Left(MyName,instr(myname," ") )

?Mid(myname,instr(myname," ")+1)
Mailman

Regards

The Mailman :)
 

Users who are viewing this thread

Back
Top Bottom