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,
 
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]," ","")
 
Back
Top