page break on group value

  • Thread starter Thread starter JIM.H.
  • Start date Start date
J

JIM.H.

Hello,
Is there any way I can put a page break on a group if the
group has certain value?
Thanks,
Jim.
 
I posted it on wrong place. how can you put page break
based on a value of the group in the report? I do not
want to put page break for each value in the group, only
for some certain values.
 
I posted it on wrong place. how can you put page break
based on a value of the group in the report? I do not
want to put page break for each value in the group, only
for some certain values.

Add a page break control to the top of the Group Header.
Code the Group Header Format event:
PageBreakName.Visible = [LastName] = "Jones"

Of course you'll use the correct name of the page break and the
correct group Field and criteria.
 
Back
Top