Current Month in report title

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to have the name of the current month automatically populate
in my report title? My title is Call Schedule but I would like it to
automatically put the name of the current month before that - for example,
April Call Schedule.

Thanks!
 
Set the Control Source of the text box in the report header to something
like this:

=Format(Date(), "mmmm") & " Call Schedule"
 
Lori said:
Is there a way to have the name of the current month automatically populate
in my report title? My title is Call Schedule but I would like it to
automatically put the name of the current month before that - for example,
April Call Schedule.

=Format(Date(), "mmmm") & " Call Schedule"
 
Back
Top