Setting Groups Per Page

S

Sumn

I would like to print only 2 groups per page ? Does
anyone know how to set that property ?
 
D

Duane Hookom

You could try place a page break at the very bottom of the group footer
section. Name the control PgBkGroup. Add a text box to the group header:
Name: txtCountGroup
Control Source: =1
Running Sum: Over All
Then add code to the On Format event of the group footer:
Me.PgBkGroup.Visible = Me.txtCountGroup Mod 2 = 0
 
Top