How do I delete spaces in between text? Trim doesnt work.

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

Guest

How do I delete spaces in between text? Trim doesnt work. And if it is
Replace, what is the exact syntax? Thanks,
 
You can remove all spaces from a string using
Replace([YourField]," ","")
 
If you are talking about removing multiple space to use only one try this --
Replace([YourField]," "," ")
Or to remove all spaces then this --
Replace([YourField]," ","")
 

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