Display Current Month

C

Cha

How to display the "Current Month" in a report header in an unbound text box
inAccess 2003?
 
A

Allen Browne

Cha said:
How to display the "Current Month" in a report header in an unbound text
box
inAccess 2003?

Set these properties for your text box:
Control Source: =Date()
Format: mmmm

If you want the year as well:
Format: mmmm yyyy
 
M

MikeJohnB

Place an Unbound Text Box on the header.

In the Control Source Row type =Date()
In the Format Row mmmm
Result November is displayed
 
Top