Question : Remove Extra Spaces After Entry

I have data that was imported from an excel file that has extra spaces after. (For example, value for first name is Jeff____ where _ represents a space). Is there a way to remove all of these automatically?

Answer : Remove Extra Spaces After Entry

Make a backup of your MDB, then run this update query:

UPDATE Table1 SET Table1.FIELD1 = Trim([FIELD1]);


mx
Random Solutions  
 
programming4us programming4us