cancel
Showing results for 
Search instead for 
Did you mean: 

Skip Section Header for the first page

Former Member
0 Kudos

Hello,

I have an Web Application with a CR report.

In that report, I have stuff in the Page Header, then a list of pages in the Detail Section.

The problem is that I need the stuff in the Page Header to be printed only after the 2nd page. The first page will have a slightly different Page Header and I will simulate it by putting it directly in the top of the 1st page of the Detail Section. But I need the default Page Header stuff not to appear in the top of the 1st page.

How can I achieve that?

Accepted Solutions (1)

Accepted Solutions (1)

former_member200290
Contributor
0 Kudos

In the design of the report go to the section expert, highlight the page header and select the "x+2" button next to "Suppress (No Drill-Down)" option.

Use the following formula and it will suppress on the first page:

if pagenumber = 1 then

true

else

false

similarly you can create a "page header B" section and have it only show on the first page by reversing the formula.

Trevor

Former Member
0 Kudos

Thank you Trevor!

That's what I was looking for.

Answers (0)