Remove leading space

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a Description field that has a " " for the first character. I need to
remove that leading space. I created a query to find the records with the
space but I'm not sure how to remove it.

For example - this is currently what the field looks like
4500-F-12/24D-612
and i need it to look like this (without the leading space)
4500-F-12/24D-612
 
Use the LTrim function in an update query, e.g.

UPDATE [MyTable]
SET [Description] = LTRIM([Description]);

This will remove the leading spaces from the relevant rows, but leave the
others unchanged.

Ken Sheridan
Stafford, England
 
The easy way is to use an Update query with this as the Update To information
 

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