I received a database with the Full Names in one column. Is there a way to seperate them into 2 columns for First and Last Name?
Well, yes... BUT.
How do you intend to handle these names:
Madonna ' that's her full name
John Wilkes Booth ' last name Booth
Christina Zeta Jones ' last name Zeta Jones
Hans van der Steen ' last name van der Steen
Leaving these exceptions for manual handling, you can:
- create new FirstName and LastName fields
- run an Update query updating FirstName to
Left([fullname], InStr([fullname], " ") - 1)
and
LastName to
Mid([fullname], InStr([fullname], " ") + 1)
with a criterion of
LIKE "* *"
on the fullname field to prevent errors if there is no blank.