Method 1
When you export the data, you can select
Save Formatted in the
Export Table dialog box.
Method2
Create a query with the fields that you want to export and then use the
Format() function. You can use the following function to specify the number of decimal places in the Number field. For example, if your field has four decimal places, the column in the query grid looks as follows:
Field: Format([fieldname],"##0.0000")
You can also use the
CStr() function to convert the field to text before you export. For example, the column in the query grid looks as follows:
Field: CStr([fieldname])