Footer

  • Thread starter Thread starter Ayala
  • Start date Start date
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
 
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
 
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
.
.
 
Back
Top