Removing spaces from the left of an address

  • Thread starter Thread starter gwen
  • Start date Start date
G

gwen

How do I remove spaces if any from text in a column on the
left of data?
 
Run an update query that uses the LTrim function:

UPDATE TableName SET [FieldName] =
LTrim{[FieldName]);
 

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