P
PJFry
I am automatically importing excel 2007 files that have 15 digit numbers that
come across formatted in SN. For example 100000006290717 is formatted as
1.00E+14. These files are appended to a table where that field is Double.
The problem I have is that the value that ends up in the table is
100000006290000 instead of 100000006290717.
The import section of the code I am using to import these files is
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel12,
"tShipping", sPath & sFile, False
Any thoughts on how to correct this?
Thanks!
PJ
come across formatted in SN. For example 100000006290717 is formatted as
1.00E+14. These files are appended to a table where that field is Double.
The problem I have is that the value that ends up in the table is
100000006290000 instead of 100000006290717.
The import section of the code I am using to import these files is
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel12,
"tShipping", sPath & sFile, False
Any thoughts on how to correct this?
Thanks!
PJ