AurobindoSaha
Programmer
Hi,
I have a report with two drill levels where each level is shown or supressed on the level one is in. Clicking on the records in the top level takes supresses the group footer and header of the first level and displays the second level.
The problem is that the headers are not displayed in the first page only and not in the following pages. I like to display the headers and footers in each page of the drill level the user is in. I have already checked the option show group header in every page. In the supress formula the following formula is used.
Supress Formula
===============
WhilePrintingRecords;
if {@DrillLevel} <> 0 then
true
else
if OnFirstRecord and {@DrillLevel} = 0 then
FALSE
else if not OnFirstRecord and {@DrillLevel} = 0 then
TRUE
else
FALSE
Note: {@DrillLevel} is a formula which returns 0 for top level and 1 for 1st level.
Your sugession will be appreciated.
I have a report with two drill levels where each level is shown or supressed on the level one is in. Clicking on the records in the top level takes supresses the group footer and header of the first level and displays the second level.
The problem is that the headers are not displayed in the first page only and not in the following pages. I like to display the headers and footers in each page of the drill level the user is in. I have already checked the option show group header in every page. In the supress formula the following formula is used.
Supress Formula
===============
WhilePrintingRecords;
if {@DrillLevel} <> 0 then
true
else
if OnFirstRecord and {@DrillLevel} = 0 then
FALSE
else if not OnFirstRecord and {@DrillLevel} = 0 then
TRUE
else
FALSE
Note: {@DrillLevel} is a formula which returns 0 for top level and 1 for 1st level.
Your sugession will be appreciated.