Not showing page header

  • Thread starter Thread starter Roy Goldhammer
  • Start date Start date
R

Roy Goldhammer

Hello there

I have report. On that report i have line which must shown on any page
header exept the last page which is summary page.

On the page header there are another objects that must be shown on each
header including the last page

How can i do that?
 
Roy,

In the Format event of the Page Header section, you can use code like
this...
Me.YourControl.Visible = [Page] <> [Pages]
 
Back
Top