repeated page footer note

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Just wonder if there is a way to only show page footer at the last page
instead of showing page footer every page?
 
Kevin said:
Just wonder if there is a way to only show page footer at the last page
instead of showing page footer every page?


Make sure that you have a text box (anywhere on the report)
that refers to Pages. Then use thid line of code in the
page header section's Format event:

Me.Section(4).Visible = (Me.Page = Me.Pages)
 
Back
Top