B
Bruce
Hi,
I am running the following function to export data to a terxt file. My data
is of type double where values contain 2 or 3 decimal places. When I run this
function all data is converted to 2 decimals.
Function Export_Last()
DoCmd.TransferText acExportDelim, "spec_Data", "q_Export_Last", destdir
& "LastUpdate.txt", False, ""
MsgBox ("Finished")
End Function
In the query 'q_Export_Last', viewing the results I can see data that is
either 2 or decimals.
The 'Spec Data' argument is a specification which I have defined the export
to fields also as double.
How can I export without changing the data. i.e. no round to 2 decimals?
Bruce
I am running the following function to export data to a terxt file. My data
is of type double where values contain 2 or 3 decimal places. When I run this
function all data is converted to 2 decimals.
Function Export_Last()
DoCmd.TransferText acExportDelim, "spec_Data", "q_Export_Last", destdir
& "LastUpdate.txt", False, ""
MsgBox ("Finished")
End Function
In the query 'q_Export_Last', viewing the results I can see data that is
either 2 or decimals.
The 'Spec Data' argument is a specification which I have defined the export
to fields also as double.
How can I export without changing the data. i.e. no round to 2 decimals?
Bruce