I have the following line of code...
DoCmd.TransferText acImportDelim, "Chart Import Specification", "tblMeterReads", fileName, True, , 1252
I can manually run chart import specification with no problem. When I use DoCmd TransferText it imports all of the records, but skips a field that has decimals in it. I have recreated the import specification several times and it works manually without any problem which rules out a data type mismatch, a key violation, or a typo in the field name.
Thank you for any suggestions.
DoCmd.TransferText acImportDelim, "Chart Import Specification", "tblMeterReads", fileName, True, , 1252
I can manually run chart import specification with no problem. When I use DoCmd TransferText it imports all of the records, but skips a field that has decimals in it. I have recreated the import specification several times and it works manually without any problem which rules out a data type mismatch, a key violation, or a typo in the field name.
Thank you for any suggestions.