Get rid of page breaks in report

san picture san · Jan 20, 2009 · Viewed 88.7k times · Source

How do I get rid of the page breaks in an SSRS report, making the report display in a single page?

Answer

kinshowa picture kinshowa · Dec 9, 2012

Open the report's .rdl file in a text editor and locate the <Page></Page> section. In that section, insert the following:

<InteractiveHeight>0in</InteractiveHeight>
<InteractiveWidth>8.5in</InteractiveWidth>

In SSRS, an interactive height of 0 means the report has an infinite length and therefore, it will exist on a single page.