G
Guest
I want to insert the name of the report in the footer section of an Access
report. How is that done?
report. How is that done?
I want to insert the name of the report in the footer section of an Access
report. How is that done?
fredg said:I want to insert the name of the report in the footer section of an Access
report. How is that done?
In the footer add an unbound text control.
Set it's Control Source property to:
= [Name]
NoviceLois said:Thanks Fredg. I should have mentioned I do not want to hardcode in the
report name.
fredg said:I want to insert the name of the report in the footer section of an
Access
report. How is that done?
In the footer add an unbound text control.
Set it's Control Source property to:
= [Name]
Ken Snell said:What fred gave you does not "hardcode" the name of the report. Type what he
gave you exactly as shown; it gets the name of the report from the Name
property of the report.
--
Ken Snell
<MS ACCESS MVP>
NoviceLois said:Thanks Fredg. I should have mentioned I do not want to hardcode in the
report name.
fredg said:On Thu, 17 Mar 2005 09:29:10 -0800, NoviceLois wrote:
I want to insert the name of the report in the footer section of an
Access
report. How is that done?
In the footer add an unbound text control.
Set it's Control Source property to:
= [Name]
NoviceLois said:Ken-
I'm afraid I did not make myself clear. Fredg gave me ***exactly*** what
I
wanted. If I had "hardcoded" the name in, then every time I changed the
report and gave it a new title, as I am wont to do, then I would have to
change the name.
I couldn't be more pleased with Fredg's advice...he read my mind.
Awesome ... worked perfectly.. thank youIn the footer add an unbound text control.
Set it's Control Source property to:
= [Name]