Newbies lapskaus Posted March 23, 2001 Newbies Posted March 23, 2001 how can i make a calculation field that takes the value of another field and removes all spaces between words in a string? Example: I want "this and that" shown as "thisandthat".
elvis_impersonating_penguin Posted March 23, 2001 Posted March 23, 2001 Substitute( FieldName , "what to replace" ,"replace with this" ) so it would look like this: Substitute( FieldName , " " ,"" ) change Fieldname to the name of the original field.. i think this should work any.
BobWeaver Posted March 23, 2001 Posted March 23, 2001 Use the Substitute() Function. NewText = Substitute(OldText," ","")
Newbies gmb Posted March 24, 2001 Newbies Posted March 24, 2001 how would this work for Carriage returns?, that is to remove them are replace with a space.
Recommended Posts
This topic is 8686 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now