cancel
Showing results for 
Search instead for 
Did you mean: 

Field headings should not be repeated on each page

Former Member
0 Kudos

<p>Is there any way in which when I insert a subreport in Report Footer , it makes the filed headings in the main report to repeat on each page.</p><p>What changes need to be made in the main report so that the field headings of main report are not repeated... </p><p>&#160;</p>

Accepted Solutions (1)

Accepted Solutions (1)

todd_hanna
Employee
Employee
0 Kudos

<p>I&#39;m guessing the headers you don&#39;t want to display are in the Page Header section. I would suggest creating a formula named &#39;suppressFlag&#39; with this code:</p><p>whileprintingrecords;</p><p>numbervar suppressFlag := 1;</p><p>&nbsp;</p><p>Put that formula in the Report Footer section.</p><p>Then in the conditional suppression formula editor for the Page Header (right click the grey area on the right, choose section expert) add this code:</p><p>whileprintingrecords;<br />numbervar suppressFlag;<br /><br />if suppressFlag = 1 then true else false</p><p>&nbsp;</p><p>t </p>

Answers (0)