cancel
Showing results for 
Search instead for 
Did you mean: 

Suppress Page Header for Crosstab

Former Member
0 Kudos

This report has a crosstab in the RFb section. The crosstab requires more than one page. How can I conditionally suppress the page header when the crosstab begins?

Thanks,

Art

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

you can create a formula to conditionally surpess a section.

cross tabs are funky. they dont function like other reports.

if it doesnt need to be in a cross tab, it may be easier to do this.

Answers (1)

Answers (1)

Former Member
0 Kudos

Try to create a formula like this

whileprintingrecords;

numbervar i:=0;

place this formula in report header. Now create another formula

whileprintingrecords;

numbervar i:=1;

place this in RFb and you can suppress these forumulas after placing in the report.

Now right click on the page header section and go to section expert and write the conditional suppress formula like this

whileprintingrecords;

numbervar i;

cbool(i)

Since the variable has the value 1 when RFb prints, there after the page header will be suppressed.

regards,

Raghavendra.G