Query Question...

  • Thread starter Thread starter 116
  • Start date Start date
1

116

I have a name field that contains first and last, not seperated. I am
wondering if I can use the MID and LEFT to grab x amount of characters from
the last name?

Thanks in advance
David
 
Provided there is a space between the first and last names you could do
something like this:
NewField: Left(Mid([SomeField],Instr([SomeField]," ") + 1),4)

However, you could run into problems names such as James Earl Jones or Linus
Van Pelt
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top