Only show page footer on first page

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

Guest

Hi,
Anyone know of a way to get a report's page footer to only show on the first
page?

Thanks
 
adna said:
Hi,
Anyone know of a way to get a report's page footer to only show on
the first page?

Thanks

You can put code in the Format event of the section...

Cancel = (Me.Page > 1)

....but I think that will still show a blank space where the footer would
ordinarily be.
 
Hi

Put this is the "page header" OnFormat event

Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As
Integer)
Me.Section(4).Visible = Me.[Page] = 1
End Sub
 
Yay! That worked like a charm. Thanks!

Wayne-I-M said:
Hi

Put this is the "page header" OnFormat event

Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As
Integer)
Me.Section(4).Visible = Me.[Page] = 1
End Sub


--
Wayne
Manchester, England.



adna said:
Hi,
Anyone know of a way to get a report's page footer to only show on the first
page?

Thanks
 
Hi,
I have a similar issue as Adna and I tried your solution. It sort of worked
for me, but perhaps you could assist me further with more specifics?

My issue: I have a report that has a Detail Section that can grow. I have
set up Signature lines to appear in the Footer and I would like it to show up
on the last page of the report...whether it is 1, 2, or 3 pages long. Do you
know how i might set that up?

I appreciate any assistance you can provide.

Thanks,
Dev

Wayne-I-M said:
Hi

Put this is the "page header" OnFormat event

Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As
Integer)
Me.Section(4).Visible = Me.[Page] = 1
End Sub


--
Wayne
Manchester, England.



adna said:
Hi,
Anyone know of a way to get a report's page footer to only show on the first
page?

Thanks
 
Hi Dev,
Not sure if this will work for you but perhaps you could just add your
signature lines in the report footer instead of the page footer. That way it
will only appear on the last page of the report.


Dev said:
Hi,
I have a similar issue as Adna and I tried your solution. It sort of worked
for me, but perhaps you could assist me further with more specifics?

My issue: I have a report that has a Detail Section that can grow. I have
set up Signature lines to appear in the Footer and I would like it to show up
on the last page of the report...whether it is 1, 2, or 3 pages long. Do you
know how i might set that up?

I appreciate any assistance you can provide.

Thanks,
Dev

Wayne-I-M said:
Hi

Put this is the "page header" OnFormat event

Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As
Integer)
Me.Section(4).Visible = Me.[Page] = 1
End Sub


--
Wayne
Manchester, England.



adna said:
Hi,
Anyone know of a way to get a report's page footer to only show on the first
page?

Thanks
 

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