Hello all,
I've got a small challenge that I cannot seem to get solved. I'm exporting a query (QRY_Gross_Performance_4) to a CSV file via a SELECT SQL in VBA, since I need to apply some variable filters on it.
I've got a field QRY_Gross_Performance_4.[Departure Date] that is formatted in to
in QRY_Gross_Performance_4.
Running the QRY_Gross_Performance_4 perfectly shows the date as 01-06-2016. However, when I export to the CSV, I get 1-6-2016 00:00 in the field.
Am I doing something wrong?
I've got a small challenge that I cannot seem to get solved. I'm exporting a query (QRY_Gross_Performance_4) to a CSV file via a SELECT SQL in VBA, since I need to apply some variable filters on it.
I've got a field QRY_Gross_Performance_4.[Departure Date] that is formatted in to
Code:
format([Departure Date];"dd-mm-yyyy")
Running the QRY_Gross_Performance_4 perfectly shows the date as 01-06-2016. However, when I export to the CSV, I get 1-6-2016 00:00 in the field.
Am I doing something wrong?