Hi,
I also have this problem, however, when I try and use the formula below it
changes to d"ate,"mm/dd/yyyy. Perhaps I am doing something wrong?
> format(Date,"mm/dd/yyyy")
>
[quoted text clipped - 3 lines]
> > on the export the date does not go through as I need it to. Any suggestions?
> > Thanks.
Klatuu - 05 Oct 2005 14:09 GMT
Interesting.
Format(Date,"mm/dd/yyyy") on today's date should return 10/05/2005
Post back your code so we can see if there is a problem
> Hi,
>
[quoted text clipped - 8 lines]
> > > on the export the date does not go through as I need it to. Any suggestions?
> > > Thanks.
Rick Brandt - 05 Oct 2005 14:15 GMT
> Interesting.
> Format(Date,"mm/dd/yyyy") on today's date should return 10/05/2005
> Post back your code so we can see if there is a problem
Format(Date,"mm/dd/yyyy")
...should work in VBA code. In a query or ControlSource expression you need
to add the parenthesis.
Format(Date(),"mm/dd/yyyy")

Signature
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
Klatuu - 05 Oct 2005 14:10 GMT
I forgot to mention you could also try Cstr(Date)
> Hi,
>
[quoted text clipped - 8 lines]
> > > on the export the date does not go through as I need it to. Any suggestions?
> > > Thanks.