How do I insert the report name in the footer of an Access report.

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

Guest

I want to insert the name of the report in the footer section of an Access
report. How is that done?
 
When you are in design mode of the report, right click and choose Report
footer. Then add a text field and type in the name of the report.

HTH
Rajesh
 
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]
 
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]
 
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:
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-

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.

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.


fredg does good work! < g >
 
Back
Top