This should be simple but I'm stuck. I have a table that is exported to a csv with one of these:
DoCmd.TransferText acExportDelim, , "Standard IG Order", "C:\Cardinal Order\Exports ready for Cardinal" + PartNumber3 + ".csv", True
The problem is that one of the fields is a date and must be in the following format:
05/15/2018
(MM,DD,YYYY)
That's where I am stuck I can't seem to get that format in my table.
I'm getting this:
5/15/18 0:00
How do I make this happen?
Thanks
Kip
DoCmd.TransferText acExportDelim, , "Standard IG Order", "C:\Cardinal Order\Exports ready for Cardinal" + PartNumber3 + ".csv", True
The problem is that one of the fields is a date and must be in the following format:
05/15/2018
(MM,DD,YYYY)
That's where I am stuck I can't seem to get that format in my table.
I'm getting this:
5/15/18 0:00
How do I make this happen?
Thanks
Kip