R
rsabalbaro
Hi everyone.
I would like to know how I can extract information from one field in
access. I have a field called FullName with the following format:
Smith, Mr. John
I'd like to be able to extract the following from the field:
LastName
FirstName
Title
It should look like the following:
LastName = Smith
FirstName = John
Title = Mr.
Now if there's no title, it's ok it'll just be blank.
I was able to use the following query to extract the lastname:
LastName: Left([Name],InStr([Name],",")-1)
but I'm not sure how to go about the FirstName and Title.
Thanks for any advice!!
I would like to know how I can extract information from one field in
access. I have a field called FullName with the following format:
Smith, Mr. John
I'd like to be able to extract the following from the field:
LastName
FirstName
Title
It should look like the following:
LastName = Smith
FirstName = John
Title = Mr.
Now if there's no title, it's ok it'll just be blank.
I was able to use the following query to extract the lastname:
LastName: Left([Name],InStr([Name],",")-1)
but I'm not sure how to go about the FirstName and Title.
Thanks for any advice!!