Shiner452
Mar 12 2008, 11:21 AM
Is there a way I can create a query field that will take the spaces out of a field.
I want to turn this "Fifty five" into "Fiftyfive"
Doug Steele
Mar 12 2008, 11:23 AM
Use the Replace function:
Replace("Fifty five", " ", "")
I'm assuming that your value is actually in a variable (let's call it MyString), in which case you'd use
Replace(MyString, " ", "")