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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Group Footer

Status
Not open for further replies.

PeterL

IS-IT--Management
Oct 30, 2000
129
US
I need to surpress printing of a page header on any page where a group footer page is printed. I can surpress printing when I moved the group footer section to the report footer but need to print this section each time the group changes without seeing the page header info.

Thanks
 
Do you have new page before and new page after checked for this group footer section? You could try the following. Create two formulas:

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

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

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

whileprintingrecords;
booleanvar flag = true; //note that this is an "=" not ":="

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top