Hello,
I am using his code to export data from a query into a .dbf file. The .dbf file gets created great however the data drops to 5 decimal places when in the Query it shows 10 decimal places.
Any way to make it export with 10 decimal places in this code?
Dim access As access.Application
Set access = CurrentProject.Application
access.DoCmd.OpenQuery "qry_si EXPORT FOR MAP"
access.DoCmd.TransferDatabase acExport, "dBASE IV", "c:\", acTable, "qry_si EXPORT FOR MAP", "MIDDLETON 3D ARCVIEW.DBF"
DoCmd.Close acQuery, "qry_si EXPORT FOR MAP"
Thanks.
Fen How
I am using his code to export data from a query into a .dbf file. The .dbf file gets created great however the data drops to 5 decimal places when in the Query it shows 10 decimal places.
Any way to make it export with 10 decimal places in this code?
Dim access As access.Application
Set access = CurrentProject.Application
access.DoCmd.OpenQuery "qry_si EXPORT FOR MAP"
access.DoCmd.TransferDatabase acExport, "dBASE IV", "c:\", acTable, "qry_si EXPORT FOR MAP", "MIDDLETON 3D ARCVIEW.DBF"
DoCmd.Close acQuery, "qry_si EXPORT FOR MAP"
Thanks.
Fen How