D
Dan
I have 3 fields in my query
[FirstName]
[LastName]
[FullName]
I would like to update the [FirstName] field with the first name listed in
the [FullName] Field. and update the [LastName] field with the last name
listed in the [FullName] Field.
I was thinking on something like this:
Update [FirstName] = Right([FullName], )
Update [LastName] = Left([FullName],)
The problem I have is I don't know how to make the Right() and Left()
functions look for a space
[FirstName]
[LastName]
[FullName]
I would like to update the [FirstName] field with the first name listed in
the [FullName] Field. and update the [LastName] field with the last name
listed in the [FullName] Field.
I was thinking on something like this:
Update [FirstName] = Right([FullName], )
Update [LastName] = Left([FullName],)
The problem I have is I don't know how to make the Right() and Left()
functions look for a space