footnote on first page

  • Thread starter Thread starter Dan
  • Start date Start date
D

Dan

Hello,

I would like to put a footnote at the end of the first
page of a report. Is it possible to do this as a footer
that appears only on the first page of the report and not
any subsequent pages? Thanks in advance for your help.

Dan
 
Do you want a page footer on each page with something other than the
footnote showing or is the footnote the only thing in the page footer?

In the format event of the page footer, you could try something like:

If [Page]>1 Then Cancel = True

This will cancel the entire page footer for pages after page one. If you
have other items in the page footer that you want to show and just cancel
the footnote, then hide the textbox for the footnote instead.

Me.txtFootNote.Visible = ([Page] = 1)

The part in the parentheses will return True or False, depending on the page
number.
 
Back
Top