I have set up an application for ordering literature. The ordering is automated in the field via telephone. The orders are downloaded from PROCOM into a *.txt file or *.xls format. The user runs queries to delete old data and then imports new data. The PROCOM system automatically downloads the Part number with a single quote in front. (ie '00001, '00831 and other odd ball part numbers like '0178, 0378, 0424, 00127-1 and AD0427). However, in the Access table the user is appending the data into the field PART#; Text; field size 10) is truncating the actual part number so that the value is 001 instead of '00001 etc. Since I am not a programmer I am not doing anything too fancy. I am using an update query mid([TBLNAME]![PART#],2,"9"
But, that's not the write solution. Have any ideas? Can you help?