C
Chris
I am trying to export a table to a comma delimited text
file. When the export is complete I notice that number
fields that have been formatted to display 4 decimal
places are truncated when I export the file.
Implemeting the solution offered by Microsoft "Microsoft
Knowledge Base Article - 208408" seems to convert my
number fields into text objects during export.
What I am trying to accomplish is create a text data file
that ONLY encloses my text fields with quotes. This is
the case when I export my table, but the truncation
problem changes my data as in the following example:
"A0A 1B0","AVONDALE","NL",47.41,53.19
The last two fields should be formatted to 4 decimal
places (as they are in my original table).
Creating a query and formatting the number fields to four
places, exports the data to four places but encloses the
fields in quotes as:
"A0A 1B0","AVONDALE","NL","53.1975","47.4162"
What I need is the data file to export the number fields
as numbers NOT characters as;
"A0A 1B0","AVONDALE","NL",53.1975,47.4162
How can this be accomplished???
Thanks,
Chris
file. When the export is complete I notice that number
fields that have been formatted to display 4 decimal
places are truncated when I export the file.
Implemeting the solution offered by Microsoft "Microsoft
Knowledge Base Article - 208408" seems to convert my
number fields into text objects during export.
What I am trying to accomplish is create a text data file
that ONLY encloses my text fields with quotes. This is
the case when I export my table, but the truncation
problem changes my data as in the following example:
"A0A 1B0","AVONDALE","NL",47.41,53.19
The last two fields should be formatted to 4 decimal
places (as they are in my original table).
Creating a query and formatting the number fields to four
places, exports the data to four places but encloses the
fields in quotes as:
"A0A 1B0","AVONDALE","NL","53.1975","47.4162"
What I need is the data file to export the number fields
as numbers NOT characters as;
"A0A 1B0","AVONDALE","NL",53.1975,47.4162
How can this be accomplished???
Thanks,
Chris