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

How to suppress pages

Status
Not open for further replies.

trivalent

Technical User
Feb 21, 2007
28
US
I am using Crystal 11. In my report I have a cross-tab in the report footer. I used the following suggestion from synapserampire "Drag your crosstab into the lower section.

Suppress the upper section and place this formula within:

whileprintingrecords;
booleanvar SuppressPH := true

Now right click the page header and select format section and in the X2 next to suppress place:

whileprintingrecords;
booleanvar SuppressPH"

This works great for the first page of the Report Footer, but the Report Footer is 3 pages long. How you can you suppress the Page Header for all pages in the Report Footer.
 
You should have stayed within your original thread instead of starting a new one.

Try putting this formula:

whileprintingrecords;
booleanvar SuppressPH := true;

...in the section that contains the crosstab.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top