Not showing page header

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?
 
S

Steve Schapel

Roy,

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