export date without time - comma delimited file

J

Jubejoie

Does anyone know how to export a table that has percents
and dates comma delimited without the slashes in the
date and without the time? And for the percentages, how
do I export with all the decimal places in tact as I see
on the table? When I export I don't get the trailing
zeroes?

i.e. I enter 012.7860000 when I export I get left
justified 12.786
Can someone help me?

Thanks in advance
 
J

John Vinson

Does anyone know how to export a table that has percents
and dates comma delimited without the slashes in the
date and without the time? And for the percentages, how
do I export with all the decimal places in tact as I see
on the table? When I export I don't get the trailing
zeroes?

i.e. I enter 012.7860000 when I export I get left
justified 12.786
Can someone help me?

Thanks in advance

If the field is numeric, those are just two different ways of
depicting the same number.

I'd suggest exporting from a Query using the Format() function to
convert the date or the percentage to a text string:

ExpDate: Format([datefield], "ddmmyyyy")
ExpPct: Format([numberfield], "000.0000000")
 

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