I have tables that contain number fields set up as Double that have up to 4 decimal places ex: 0.07395. I do a backup of the data using the
I've also tried the
they both work but the 4 Decimal fields only come across with 2 decimals. So when I restore the data using the
I loose two decimals.
What do I need to do to fix this?
Thanks
Code:
Docmd.transfertext acExportDelim,,"Master", "c:\port\master.txt", true
Code:
Docmd.transfertext acExportMerge,,"Master","C:\port\master.txt", true
Code:
docmd.transfertext AcImportDelim,,"Master","c:\port\master.exe", true
What do I need to do to fix this?
Thanks
Comment