Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Access Report: Footnote on first page only

Status
Not open for further replies.

phweston

Programmer
May 8, 2003
38
I am working on a report that will be seveal pages long. On the first page, I need to include a footnote that will only appear here, and no where else. The footnote is a reference to a registered trademark that our client wants included.

Is this possible?
 
Sure, you can use the page footer and an iif statement based on the page number to decide if it should be displayed. If you have the standard "page x of xx" you can do it very easily. Hope this helps, Ken.

- If you are flammable and have legs, you are never blocking a fire exit.
Mitch Hedburg
 
Not realy, I have try to put a IF condition on Footer Section:

if page = 1 then
me.visible = false
else
me.visible = true
endif

someting like that.

The problem is :
on second page, the detail section does not expand to cover the footer area.

I still need a solution to overcome this.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top