How do I print page footer on last page ONLY

1.1k views Asked by At

I got to update an application for a client (MS Access 2016).

This one uses it for a lot of bills (many) and he wants to print the footer (with his total, etc) only on the last page ...

I understand it, no problem, but, after a day of work, i have no idea of how i can do it (properly).

I don't understand why microsoft doesn't include a propertie like "footers -> only on last page" for their report.

If anyone can provide me a little help... it could be great

1

There are 1 answers

0
Gustav On

In the Format or Print event you can set:

Me.<SectionNameConstant>.Visible = (Me.Page = Me.Pages)

I can't off the head remember the constant, sorry.