Removing spaces from the left of an address

K

Ken Snell

Run an update query that uses the LTrim function:

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