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

Suppress the Page Header on Last page 1

Status
Not open for further replies.

PatMcLaughlin

Programmer
Dec 10, 2010
97
US
I am attempting to create a fairly difficult report in Crystal Reports (2008) It contains a Report Header, a Page Header, and 2 footers. The second footer is in fact a full page instruction sheet for the form. It cannot contain the Page Header. How can I turn it off?
 
In section expert for Page Header - in the Suppress Formula - enter:

PageNumber = TotalPageCount
 
This got me in the ballpark... to actually get it to work correctly I modified it to...
Code:
PageNumber = TotalPageCount OR PageNumber = TotalPageCount - 1
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top