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

G

Guest

I want to insert the name of the report in the footer section of an Access
report. How is that done?
 
G

Guest

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
 
F

fredg

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]
 
G

Guest

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]
 
K

Ken Snell [MVP]

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]
 
G

Guest

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]
 
K

Ken Snell [MVP]

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 >
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top