how to remove page footer from specific group header page

C

CT

I have created a directory with provincial group header pages. I do not want
the report page footer to appear on the provincial group header pages. How
can I remove the page footer from these header pages only, but leave them as
is for the rest of the report?
 
M

Marshall Barton

CT said:
I have created a directory with provincial group header pages. I do not want
the report page footer to appear on the provincial group header pages. How
can I remove the page footer from these header pages only, but leave them as
is for the rest of the report?

You can make the page footer section visible/invisble in any
section that appears earlier on the page. I think you can
do this easily in the Group Header section's Format event
procedure:
Me.Section(4).Visible = False

The trick is how to make it visible for the next page.
Without knowing all the details about your report, I suggest
that you try using the Page event procedure:
Me.Section(4).Visible = True

Alternatively, the page footer can be suppressed in its own
Format event by cancelling the event. However, I don't know
enough details about your report to see how this can help in
your situation.
 
C

CT

That's perfect! Thank you!

~ct

Marshall Barton said:
You can make the page footer section visible/invisble in any
section that appears earlier on the page. I think you can
do this easily in the Group Header section's Format event
procedure:
Me.Section(4).Visible = False

The trick is how to make it visible for the next page.
Without knowing all the details about your report, I suggest
that you try using the Page event procedure:
Me.Section(4).Visible = True

Alternatively, the page footer can be suppressed in its own
Format event by cancelling the event. However, I don't know
enough details about your report to see how this can help in
your situation.
 

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