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

Don't use page footer in group footers

Status
Not open for further replies.

TammyT

Programmer
Sep 17, 2003
183
US
I have a large report for which I want a specific page footer for the details section records; however, when I get to the 4 different group footers, I don't want the page footer info to display.

I can only find out how to not display the page footer in the report header/footer, not in specific group folders.

Any ideas?

Thanks!
 
This works for me (more or less):
Code:
Private Sub GroupFooter1_Format(Cancel As Integer, FormatCount As Integer)
    Me.PageFooterSection.Visible = False
End Sub

Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As Integer)
    Me.PageFooterSection.Visible = True
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top