title

  • Thread starter Thread starter stephanie
  • Start date Start date
S

stephanie

I have a report that lists birthdays for the current
month. I want the title to be (current month) Birthdays.
What do I need to do?

Steph
 
Place a textbox in the Report Header. Set the Control Source of the textbox
to

=Format(Date(), "mmmm") & " Birthdays"

This will give you the month of the date that the report was printed on.
 
THANKS
-----Original Message-----
Place a textbox in the Report Header. Set the Control Source of the textbox
to

=Format(Date(), "mmmm") & " Birthdays"

This will give you the month of the date that the report was printed on.

--
Wayne Morgan





.
 
Back
Top