How to get rid of the extra blank pages in PDF version of SSRS report

reporting-services

I tried creating a report using a sub report. When I exported it to PDF I have noticed that there are extra blank pages in the PDF.
I made it clear that body width + left margin+ right margin <= report width.
But still it gives the blank page. sub report as individual working great.

Also I am calling the sub report from with in a list in main report.
I tried to set up a page break after list . but it looks like its not working.

I want the next list displayed on a new page.

How do I achieve these.

Best Answer

A few things to look for:

  • Check the "parent" and subreport for any controls that are in your margins (or may grow into the margins). Setting the width doesn't necessarily force the controls to that width.

  • check for any controls that overlap. I've had strange things happen because of that (especially in SSRS 2005).

  • checking the "Print Layout" while previewing helps find most issues like this at design time (before exporting to PDF).

  • For the hard break with your list not sure what is goofy there. I usually use a table with groups and set the page breaks on the appropriate group. Depends on the data though.

    HTH

Related Topic