Remove Left Characters up to the first space

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a field that I need to remove the characters up to the first space.
How do I do this.

123 XXXXXX
2459 XXXXXX
5690 XXXXXXX
 
That'll leave the blank. To remove the blank, use

Mid([YourField], InStr([YourField], " ") + 1)


--
Doug Steele, Microsoft Access MVP

(no e-mails, please!)



Van T. Dinh said:
Use

Mid([YourField], InStr([YourField], " "))

--
HTH
Van T. Dinh
MVP (Access)



Sarah said:
I have a field that I need to remove the characters up to the first space.
How do I do this.

123 XXXXXX
2459 XXXXXX
5690 XXXXXXX
 

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