col_panic
col_panic

Reputation: 115

Crystal Reports - Hide Page Header on First Page

I have a report that needs to show a report header on page 1, and a different header on subsequent pages.

This seems simple enough; if I add pagenumber=1 and goupnumber=1 to the suppress formula for the second header, it will only be shown after the first page. However, the report is also supposed to reset the page count several times in a single group, thus leaving several pages that match those criteria.

Is there another field in Crystal reports that could have a unique value for the first page? Or is there another way I might go about solving this?

Upvotes: 6

Views: 14685

Answers (3)

Venthan
Venthan

Reputation: 1

You have to specify in the Selection Expert - second header - Suppress Formula the following formula:

PageNumber <> 1

Upvotes: 0

gliderkite
gliderkite

Reputation: 8928

You have to specify in the Selection Expert - Suppress Formula the following formula:

PageNumber = 1

Upvotes: 5

Chetan Sanghani
Chetan Sanghani

Reputation: 2111

In the Supress Formula try this Formula Drilldowngrouplevel = 1 ;

or

PageNumber=TotalPageCount

Upvotes: 1

Related Questions