cancel
Showing results for 
Search instead for 
Did you mean: 

Position of page footer

Former Member
0 Kudos

I have a report containing 20 rows. In one page 16 rows are placed and in second page only 4 rows are there. Generally the page footer comes at the end of the page only , But i need the page footer of second page(ie, containing only 4 rows) to be placed immediately afte rthe 4 rows. Is it possible?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

YOu can add a group and use the group footer

Copy contents of page footer into group footer, leave objects in page footer too.

Use a boolean var in your group footer which can be used to conditionally suppress page footer

@PFeval

whileprintingrecords;

global booleanvar pf:= false;

In Group header

@PFreset

whileprintingrecords;

global booleanvar pf:= true;

In section expert suppression of PF

global booleanvar pf = false;

Ian

Former Member
0 Kudos

Thank you so much, i got it.

Answers (1)

Answers (1)

Former Member
0 Kudos

Page footers always print at the bottem of the page. Sorry