Footer

A

Ayala

Hi,
I have two subreports that will be the page footer for a
single report. Subreport A I want it to be the footer only
of the first page. Subreport B to be the page footer of
all the rest of the report.
I try putting the subreport A and B on the page Footer and
report Footer sections but doing this what I want to be
the footer of the first page is placed in the last page of
the document.

Any help will be appreciated,
Ayala
 
J

Jim/Chris

Try this

Subreport A
Put this in the Page Header On Format section
Displays page footer only on first page
Me.PagefooterSection.Visible = ([Page] = 1)

Subreport B
Put this in the Page Header On Format section
Displays page footer except first page
Me.PagefooterSection.Visible = ([Page] > 1)

Jim
 
G

Guest

thx just a few changes and worked perfect! :)
-----Original Message-----
Try this

Subreport A
Put this in the Page Header On Format section
Displays page footer only on first page
Me.PagefooterSection.Visible = ([Page] = 1)

Subreport B
Put this in the Page Header On Format section
Displays page footer except first page
Me.PagefooterSection.Visible = ([Page] > 1)

Jim

-----Original Message-----
Hi,
I have two subreports that will be the page footer for a
single report. Subreport A I want it to be the footer only
of the first page. Subreport B to be the page footer of
all the rest of the report.
I try putting the subreport A and B on the page Footer and
report Footer sections but doing this what I want to be
the footer of the first page is placed in the last page of
the document.

Any help will be appreciated,
Ayala
.
.
 

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