Text box visible in page header only on last page

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

Guest

I have a text box that I only want visible on the last page of the report. I
am working in Access 97. Does anybody know how to do this? Thanks in advance.
 
I have a text box that I only want visible on the last page of the report. I
am working in Access 97. Does anybody know how to do this? Thanks in advance.

If you don't already have a control in the report computing Pages,
i.e. = "Page " & [Page] & " of " & [Pages]
add one.

Then code the Page Header format event:.

[ControlName].Visible = Me.[Page] = [Pages]

The control will display only on the last page.
 
Back
Top