Export Precision

M

Mark

When I export fractional data to a comma delimited file
the data is exported in a fixed format of two decimal
places. The actual data precision is much higher in the
database. How can I get the exported data to be in the
same precision as the database? Thanks for your help.

Mark
 
J

John Nurick

Hi Mark,

Create a query that uses the Format() function in calculated fields,
e.g.
fMyField: Format([MyField], "0.0000000000")
Then export this query to the CSV file.
 
G

Guest

Thanks for your help.

Mark
-----Original Message-----
Hi Mark,

Create a query that uses the Format() function in calculated fields,
e.g.
fMyField: Format([MyField], "0.0000000000")
Then export this query to the CSV file.

When I export fractional data to a comma delimited file
the data is exported in a fixed format of two decimal
places. The actual data precision is much higher in the
database. How can I get the exported data to be in the
same precision as the database? Thanks for your help.

Mark

--
John Nurick [Microsoft Access MVP]

Please respond in the newgroup and not by email.
.
 

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