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)
 

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

Back
Top