Eliminate all spaces

A

ABM

Is there is function that will eliminate all spaces? Similar to TRIM but
would also eliminate spaces within the string.
 
F

fredg

Is there is function that will eliminate all spaces? Similar to TRIM but
would also eliminate spaces within the string.

In what context? In a Query?
NoSpaces:Replace([FieldName]," ","")
 
Top