Suppress page header

P

Peter Ivers

Is there a way to suppress print of the page header when
a group header is printed. The report looks like this

ITEM QTY PRICE << want to hide this
GROUP HEADER HERE WITH PAGE BREAK
ITEM QTY PRICE << This is actually on group header
1 10 10.99
 
M

Marshall Barton

Peter said:
Is there a way to suppress print of the page header when
a group header is printed. The report looks like this

ITEM QTY PRICE << want to hide this
GROUP HEADER HERE WITH PAGE BREAK
ITEM QTY PRICE << This is actually on group header
1 10 10.99


Set the Page header's Visible property to No (for the first
page). Then use the Group footer's Format event to make it
visible (for the start of the next group):

Me.Section(3).Visible = True

and the Group header's Format event to make it invisible
(for the rest of the group):

Me.Section(3).Visible = False
 

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