Decimal positions truncating when exporting to text file

S

smars66

I have a table with a decimal field. There are 4 decimal positions. When I export the table to a comma delimited text file, it truncates the last 2 decimal positions. The export goes through a wizard and I think the decimals are getting truncated in the wizard. Does anyone know how to edit the wizard parameters?
 
K

Ken Snell

Create a query that will select the records from the table. Replace the
"decimal" field with a calculated field that uses the Format function to
give you four decimal places:
OutPutField: Format([FieldName], "0.0000")

--

Ken Snell
<MS ACCESS MVP>

smars66 said:
I have a table with a decimal field. There are 4 decimal positions. When I
export the table to a comma delimited text file, it truncates the last 2
decimal positions. The export goes through a wizard and I think the decimals
are getting truncated in the wizard. Does anyone know how to edit the wizard
parameters?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top