cancel
Showing results for 
Search instead for 
Did you mean: 

Suppressing Line in Only Last page

Former Member
0 Kudos

Hi All,

I have a line in page footer.But i want supress it in only last page.can any one resolve this

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Francis,

Do you need to show the page footer at the last page, if not, then you can hide it completely.

Test following suppress condition on the page footer section:

OnLastRecord

If only line suppression is required then place it in separate page footer section and do conditional suppress on that section.

Thanks,

Prathamesh

Former Member
0 Kudos

Hi Prathamesh,

I have date and time, line in page footer.I need to show all except line in last page.

Can you please tell me what is the condition for this.

abhilash_kumar
Active Contributor
0 Kudos

Hi Francis,

A Line object cannot be dynamically suppressed.

You would need to place the Line on a separate Page Footer Section and suppress the section dynamically.

So, what you can do is have two Page Footer Sections. One having the date/time and a Line and another Page Footer with just the Line.

So, the 1st Page Footer will be suppressed on last page whereas the second one will remain suppressed on all but the last page.

Go to the Section Expert > Select Page Footer a > Click on the formula button beside Suppress and use this code:

OnLastRecord

Then, Select the Page Footer b section > Click on the formula button beside Suppress and use this code:

not(OnLastRecord)

Hope this helps!

-Abhilash