How to concatenate strings: Delete spaces

  • Thread starter Thread starter Brandon Johnson
  • Start date Start date
B

Brandon Johnson

I was wondering how to take a string and completely eleveate the spaces
within. example:: Industrial Technology. so after the transition i
would like it to look like this: IndustrialTechnology. If anyone has
any thoughts please let me know.
 
Use the replace function to relace space with empty

Replace([FieldName]," ","")
 
Try the Replace() function.

strString = Replace(strString, " ", "")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top