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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top