Format () question

L

Laurel

I'm trying to get a date to display in this fashion:
Wednesday, Nov 14 (or Wednesday, November 14 if I must).

If I use this format "dddddd\,mmm dd" I get this strange result:

Wednesday, November 14,2007,Nov 14

If I use this format "ddddd\,mmm dd" (dropping one 'd'), I get this result:

11/14/2007,Nov 14

Very strange. Is there a way to get what I want with the Format(,)
function?
 
K

Ken Snell \(MVP\)

Or, if you're using the Format property of a textbox in the report:

dddd, mmm dd
 
D

Duane Hookom

You should leave the control source with just the date field and set the
format property to
dddd, mmm d
 
K

Klatuu

In the format property of the text box to which the data is bound, select
"Long Date"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top