long date format for report input mask

  • Thread starter Thread starter Mark Kubicki
  • Start date Start date
M

Mark Kubicki

should be an easy question:

the input mask for a short date in a text box on a report is: 00->L<LL-00
which results in 07-Oct-08

what is the mask that produces: October 07, 2008?

the control source for the textbox is: =Date()

I'm just not getting it and it's too simple to spend any motre time on...
so, thanks in advance. Mark
 
Mask does not produce: October 07, 2008.

Use Format([YourDateField], "mmmm dd, yyyy")
 
Back
Top