Page footer only first page

M

miauraika

I have a report with section page header and page footer, I need that the
page footer appear only at the first page of pages.
Help please!!
 
O

Ofer Cohen

Using the PageFooter OnFormat property you can use the code

Me.Section(4).Visible = (Me.Page = 1)
 
O

Ofer Cohen

You can move this code to the OnFormat of the page footer and add a setting
to the Height of the section

If Me.Page = 1 Then
Me.Section(4).Visible = True
Me.Section(4).Height = 5045 ' Set the right height
Else
Me.Section(4).Visible = False
Me.Section(4).Height = 500 ' Set the right height
End If
 

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

Top