Hi, I have a query that I use to export data to an excel file (Access 2003):
The numeric fields (doubles) return values such as "1.07989595" From the query. However, when I export this to a .csv and open it up in Excel, it appears as
"1.07". Does anyone know how to fix this?
Code:
DoCmd.TransferText acExportDelim, , "qryDelimited", strFile, True
The numeric fields (doubles) return values such as "1.07989595" From the query. However, when I export this to a .csv and open it up in Excel, it appears as
"1.07". Does anyone know how to fix this?