View Full Version : Date Problem


JJT
02-24-2004, 06:35 AM
How are you? I would like to change the format of a date on a report.

The current format is =NOW() which gives me 2/24/2004 9:10:58 AM

I want to change it to February 24, 2004.

What do I have to do to make the change?

Thanks

Kraj
02-24-2004, 08:33 AM
All you should need to do is go to the control that has =Now() for the data source. The go to the Format tab and change/set Format to Long Date, or whichever date format matches what you want.

If it still spits the time out (although I don't think it will), change =Now() to =Date().

Mile-O
02-24-2004, 08:39 AM
=Format(Now(), "mmmm dd, yyyy")

JJT
02-24-2004, 11:33 AM
For your help.