Dates in Reports

P

Penny

I have a text box with a field name of [TradeDate](dates
like 1/1/04, 2/15/04, 3/20/04 and so on). I'm trying to
get the dates on my report by date (1/15/04, 2/15/04)
which I have done and by just the month spelled out
(January, February, March). I have a grouping by Trade
Date and I'm able to get the number of the month (1,2,3)
on the report. How would I get the month spelled out?


Thanks in advance.

Penny
 
M

Marshall Barton

Penny said:
I have a text box with a field name of [TradeDate](dates
like 1/1/04, 2/15/04, 3/20/04 and so on). I'm trying to
get the dates on my report by date (1/15/04, 2/15/04)
which I have done and by just the month spelled out
(January, February, March). I have a grouping by Trade
Date and I'm able to get the number of the month (1,2,3)
on the report. How would I get the month spelled out?


Later versions of Access have a MonthName function, or you
can always use the Format function:

Format(TradeDate, "mmmm")
 

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

Similar Threads

Access Count dates within a Month 4
Formula to report dates in a new tab 2
Excel Help with dates 2
Metadata in reports 2
Page Break after Change 1
Dates in Chronological Order 1
Picking up dates from a parameter 3
Calculation Between 2 Dates 11

Top