
Signature
I may not know VBA inside out, but from the outside I am looking in.
Dylan Moran - Melbourne Australia
> Hi,
>
[quoted text clipped - 15 lines]
> Is there somehing I can do in the QBE Grid or in sql view that can
> help me? Assistance greatly appreciated.
Format([date_ordered], "dd, mmmm yyyy")
The output from the above will actually be text rather than a date so it will
sort and react to comparisons as a string. You can also set the format property
of the column (and still get a date for output), but that setting will not be
inherited if you export the query or use it in a form/report.

Signature
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
Van T. Dinh - 25 May 2005 13:41 GMT
Tiny adjustment per original question:
Format([date_ordered], "dd mmmm yyyy")

Signature
HTH
Van T. Dinh
MVP (Access)
> Format([date_ordered], "dd, mmmm yyyy")
>
> The output from the above will actually be text rather than a date so it will
> sort and react to comparisons as a string. You can also set the format property
> of the column (and still get a date for output), but that setting will not be
> inherited if you export the query or use it in a form/report.
Dylan Moran - 26 May 2005 01:08 GMT
Excellent!!! Rick and Van, Thanks very much for your responses.
> Tiny adjustment per original question:
>
[quoted text clipped - 9 lines]
> be
> > inherited if you export the query or use it in a form/report.