I have and access database (linked tables from a SQL DB),
For some reason a few thousand records have the Full name of a person in the last_name field and the first_name field is null.
Last_Name = 'John Citizen'
First_Name is null
i need
Last_Name = 'Citizen'
First_Name = 'John'
So what i was wondering was whether there is any way to query/update that will take the first word (which in all cases is the first name)of the last_name field and put it in the first_name field. I hope this makes sense.
For some reason a few thousand records have the Full name of a person in the last_name field and the first_name field is null.
Last_Name = 'John Citizen'
First_Name is null
i need
Last_Name = 'Citizen'
First_Name = 'John'
So what i was wondering was whether there is any way to query/update that will take the first word (which in all cases is the first name)of the last_name field and put it in the first_name field. I hope this makes sense.