Function to eliminate spaces

T

Terry

I would like to have a control return the contents of a field, but without
the internal spaces. I know the trim function can eliminate the left and
right spaces, but is there a way to eliminate spaces inside of a string?

Example; "Dry Vac" Would return DryVac"
Thank you.
Terry
 
T

Terry

Works great - Thanks
KARL DEWEY said:
Replace([YourField], " ","")
--
KARL DEWEY
Build a little - Test a little


Terry said:
I would like to have a control return the contents of a field, but
without
the internal spaces. I know the trim function can eliminate the left and
right spaces, but is there a way to eliminate spaces inside of a string?

Example; "Dry Vac" Would return DryVac"
Thank you.
Terry
 
Top