Page Breaks in Access Report

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

Guest

I have a report with three group footers:

COM_VAD
LABEL_TYPE
MARKET

I have the label_type footer set to force a new page after the section so
each label type is on a separate page, which also forces the market section
on a separate page. I need to have the market section printed on the same
page as the last label type section.

Thank you in advance!
 
frpkaren said:
I have a report with three group footers:

COM_VAD
LABEL_TYPE
MARKET

I have the label_type footer set to force a new page after the section so
each label type is on a separate page, which also forces the market section
on a separate page. I need to have the market section printed on the same
page as the last label type section.


Seems like you want to set the label group header
ForceNewPage to Before Section.

If you no't want a page break between the com header and the
label header, then try using the com header section's Format
event to set the label group header's ForceNewPage to 0 and
the label header section's Print event to set it to 1.
 
Works perfect! Thank you again.

Marshall Barton said:
Seems like you want to set the label group header
ForceNewPage to Before Section.

If you no't want a page break between the com header and the
label header, then try using the com header section's Format
event to set the label group header's ForceNewPage to 0 and
the label header section's Print event to set it to 1.
 
Back
Top