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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

need help with page footer 1

Status
Not open for further replies.

SmallTime

Technical User
May 17, 2004
127
GB
I have a main report containing a number of sub reports which both have fields that can grow depending on the amount of text the field is populated with. So the report can be from one page long to any number.

What I need to do, but can't seem to achieve, is to have a page footer on the 1st page ONLY of the main report. Having looked at the available properties it seems I can show a page footer almost everywhere else apart from where I need it, with the head only.

Any ideas would be greatly appreciated.
 
You could probably use code in the On Format event of the Page Footer like:
Code:
Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As Integer)
    Cancel = Page <> 1
End Sub
THis assumes you have a Page of Pages control on your report.

Duane
MS Access MVP
Find out how to get great answers faq219-2884.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top