Export Number field and losing digits

A

Alan Barton

I am trying to export a number field that has three or
four digits to a text file. When the wizard comes up I
see that it shows the three or four digits but when it
actually exports then it only gives me two digits. The
table has the number setup as double and 6 decimal places.

Please advise!
 
K

Ken Snell

Create a query that is based on the table that you wish to export. Instead
of the number field in the query, use a calculated field that uses the
Format function to format the number the way you wish:
NumberF: Format([NumberFieldName], "0.000000")
 
K

Ken Snell

Two options:

Use the option noted in my reply to Alan.

Or

Create an Export Specification (click on Advanced button in the Wizard
window and set the parameters of the fields, then save it and use it in your
export, either manual or via TransferText).
 

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