Exporting data to external text file

P

Pat Miller

When I export a numeric field for example 8.275 to a
external txt file the resulting field in the txt file
shows only 8.27 . The field is defined as having 3
decimal positions. Why does it drop or truncate the third
decimal position.
 
J

John Nurick

Hi Pat,

That's the way Access does it; the reason is buried in the mists of
time. You can get round it by using a calculated field in a query, e.g.
fMyField: Format([MyField], "0.000")
and then exporting the query.
 

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