Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Summary page carries over previous page heading

Status
Not open for further replies.

dzavad

Programmer
Apr 17, 2000
167
US
Hi,
In the report footer I have a summary information on report parameters that were chosen to run the report. The report work ok if parameter summary page is just on one last page (RF). However, if parameter summary page longer then one page then Page Header shows up. I need to find the way for the report to supress Page Header on summary page(RF). Formula (pagenumber=totalpagecount)works only if Summary page is on one last page and fails if its straches on more then one page in report footer.
 
Create two formulas:

//{@false} to be placed in the report header:
whileprintingrecords;
booleanvar flag := false;

//{@true} to be placed in the report footer:
whileprintingrecords;
booleanvar flag := true;

Then go to the section expert->page header->suppress->x+2 and enter:

whileprintingrecords;
booleanvar flag;
flag = true; //Note no colon

-LB
 
Thank you ....worked like a charm...... :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top