Extra Character

T

TeeSee

Trying to import a file sent from a customer, however there is blank
after each item code in a specific field which needs to match up with
same field in a separate table. How best (efficiently) to strip that
blank away??

Thanks
 
K

Ken Snell \(MVP\)

You can run an update query on the table after importing the data and strip
off the trailing blank space:

UPDATE TableName
SET FieldName = Trim(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

Top