Conditional page breaks

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi

Is it possible to give conditional page breaks in access reports depending
on a field value?

Thanks

Regards
 
John said:
Is it possible to give conditional page breaks in access reports depending
on a field value?


You can insert a PageBreak control in the report and then
use code in the section's Format event to test the valus of
the field and make the page break control visible or not as
needed:
Me.pgBreak.Visible = (Me.field > 123)
 
Back
Top