Suppress page break if subreport has no data

G

Guest

I have a report with 9 subreports and a page break control after each
subreport. When a subreport does not contain any data, I get a blank page. Is
there a way to suppress the page break control when a subreport has no data?
 
J

John Spencer

In the format event of the main report section containing the sub report.

Me.SomePageBreakControl = Not(Me.SomeSubReport.HasData)
 

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

Top