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.
 
Back
Top