excel

  • Thread starter Thread starter bott
  • Start date Start date
B

bott

I'm trying to output the results of a query to Excel, but
with the results formatted per our needs. Any leads on how
to do this
 
I'm trying to output the results of a query to Excel, but
with the results formatted per our needs. Any leads on how
to do this

Use the FOrmat() function in the query to create calculated fields, as
text strings, and export them rather than exporting the query
directly. For example, if you have a date/time field, put

ExpDate: Format([datefield], "dd-mmm-yyyy")

to get dates exported as 3-Mar-2004.
 

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

Back
Top