Search code examples
reporting-servicespaginationreportingreportingservices-2005

Report has paging even with interactive size zero 0 in SSRS


I have a report in SSRS 2005 that consists of three subreports, all four of which have their interactive size set to zero. The three subreports are contained in a list. However, the report still pages (verb) at what looks like 8.5in X 11in. The paging is not due to page breaks because there are none and sometimes the reports cut off in the middle and continue on the next page.

What else causes paging besides the interactive size?

UPDATE: I am referring to web pages specifically. The printed/exported size works fine.


Solution

  • The issue is fixed by setting the list's Visibility | Hidden property to any expression that returns false. I set it to 1=0 and suddenly the interactive report stopped paging.

    This is not so much a fix as a hack because, as per this question, the visibility property stopping pagination is an SSRS bug. However, I believe the issue I was having is also a bug, so I don't feel quite as dirty using a hack.

    I'm still open to anyone explaining why the original issue was happening.