K
Ken
Hi,
I have a table with data like the below:
Mr Bill Parnell
Mr John Dough
Ms Virginia Hough
My RIGHT FUNCTION statement is this:
Table1![FName] = Right(Table1![Name], InStr(Table1![Name], " "))
When I run this statement, I get the following with different variations:
nell
ugh
ough
I'm trying to use this RIGHT function to capture the data (LName) which
would be from the right side of the data up to the first blank (blank between
first name and last name. Can someone help me correct this statement? Output
should look like this:
Parnell
Dough
Hough
Thanks in advance.
I have a table with data like the below:
Mr Bill Parnell
Mr John Dough
Ms Virginia Hough
My RIGHT FUNCTION statement is this:
Table1![FName] = Right(Table1![Name], InStr(Table1![Name], " "))
When I run this statement, I get the following with different variations:
nell
ugh
ough
I'm trying to use this RIGHT function to capture the data (LName) which
would be from the right side of the data up to the first blank (blank between
first name and last name. Can someone help me correct this statement? Output
should look like this:
Parnell
Dough
Hough
Thanks in advance.