Ismail
In a query create two new columns.
One, to isolate the first name, will have the following expression...
Left([MyName],InStr([MyName]," ")-1)
The other, to isolated the last name will have the following expression...
Mid([MyName],InStr([MyName]," ")+1)
Tom