cancel
Showing results for 
Search instead for 
Did you mean: 

Make details section as page header

Former Member
0 Kudos

Hi ,

I have a situation where I use the sections--- Details A, Details B and Details C. I used a Fake group header as page header for Details A. How could I make Details B section as a page header (for Details C section)without repeating on the same page and repeating once on each page.

Any help please..

Thanks.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Create a formula like this

@Initialize

WhilePrintingRecords;
numberVar i:=0;

place this in page header and right click on the detail section b and go to section expert and write the condition for the suppress like this

WhilePrintingRecords;
numberVar i;
i:=i+1;
if i<>1 then true
else
false

Regards,

Raghavendra

Former Member
0 Kudos

Thanks a lot Raghavendra.