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

suppressing footer when on new page

Status
Not open for further replies.

JeroenBoon

Technical User
Aug 15, 2002
106
NL
Hello,

I want to suppress the groupfooter when the footer is printed on the next page. This must be simple, but I can't figure out how to do it myself.

Jeroen.
 
hi
click on format section you need to suppress
click the X2 and enter pagenum <> 1

Durango122
if it moves and should not used Duck Tape
if does not move and should used WD-40
 
thanks Durango122, but I think I wasn't clear enough. I want to suppress the groupfooter every time that the header and details are on one page and the footer on the next. I don't want a page to start with the footer that belong to the group that starts on the former page. (So my report has more than two pages.)

Jeroen.
 
hi
check it to =1

Durango122
if it moves and should not used Duck Tape
if does not move and should used WD-40
 
You could try creating these formulas:

//{@true}:
whileprintingrecords;
booleanvar flag := true;

//{@false}:
whileprintingrecords;
booleanvar flag := false;

Place {@true} in the page header, and place {@false} in the group header. Then go to the section expert->group footer->suppress->x+2 and enter:

whileprintingrecords;
booleanvar flag;
flag = true;

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top