Truncating decimals on txt export

  • Thread starter Thread starter Ray Joslyn
  • Start date Start date
R

Ray Joslyn

How can I get more than 2 decimal places to be exported when exporting to a
fixed length txt file?
Thanks

--
Ray Joslyn
ETG Inc.

To reply via email remove NOSPAM
and replace with rjoslyn
 
Hi Ray,

Create a query that uses the Format() function in calculated fields,
e.g.
fMyNumber: Format([MyNumber], "0.0000")
and export the query.
 
Back
Top