Thanks
My report hierarchy is:
Manager Header
Project Header
Detail
Project Footer - Force Page here
If I put the Force page in Project Header I get a blank page with Manager
Header before the Projects start printing.
I'm calling it from a form and wish to use a check box - this part I am ok
with.
Where does the section number come from?
I'm using Access 2007
Thanks for your help so far
A
Hmmmm. And where does your original message state that you have more
than one Header/Footer?
Look up the ForceNewPage property in VBA help.
Look up the Section property + Section property as it applies to the
Form and Report objects. in VBA help.
I guess I could have written
Me.Section(acGroupLevel1Header)
instead of Me.Section(5) but I'm lazy. ;-)
If you wish to use the Project Footer AfteSection it's OK by me.
Set the section to the correct ProjectFooter section value and use = 2
instead of =1 to choose AfterSection.
Note: I use Access 2002. I'm assuming Access 2007 would be the same
for the ForceNewPage property.