Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Reporting Services 2005

My layout is like this:

  • I have the mainreport which contains a table
  • This table has 3 groups it runs by, GrpLevel1, GrpLevel2, GrpLevel3
  • Sub-Reports are added to one of 3 groups and are executed passing that group key to the sub-report

So, a particular sub-report will run at GrpLevel1 and for every level2 it contains, the sub-reports under GrpLevel2 will run.

The problems I'm having are that the sub-reports want to jump to the next page leaving a gapping hole of white-space in the report.

If a sub-report contains a table with a bunch of data and it can not fit on 3/4s of a page (first page on report has report header on top 1/4), it will jump the whole thing to the next page leaving only a header, rather than printing what it can on the first page.

On the table I have "Keep Together" turned off.

I'm at a loss and about ready to set my cube on fire. Insight in to this would be greatly appreciated.

UPDATE *******THIS HAS BEEN FIXED IN SSRS 2008 R2**********
It has been fixed with (SQL Server) Reporting Services 2008 R2. You can now toggle the KeepTogether on Sub-Reports. Pagination looks a lot better.

share|improve this question
I am having the exact same problem... so frustrating. I am not sure there is a solution tho. SSRS seems to want to put everything on a single page if it can, regardless of what you want... – Nathan Reed May 4 '09 at 6:25
*** This does not appear fixed in SSRS 2008 R2 **** Have seen the problem in two workplaces now, both with SSRS2008 (latest updates as at January 23 2012). Toggling keep together with sub-reports has no effect. – ElvisLikeBear Jan 23 '12 at 6:28
I am having the same issue. Instead of a report server, I have rdlc files in my website. I have set KeepTogether to false everywhere, but my main report continues to keep my subreports together. Does anyone know a solution for this? – Josh C. Jul 19 '12 at 22:09

4 Answers

up vote 6 down vote accepted

Looks like there is no solution to this problem. The bug is aknowleged by microsoft, but its still not fixed in SSRS2008.

From the KB article (http://support.microsoft.com/kb/938943)

This behavior occurs because the Subreport control has an implicit KeepTogether property. By design, the KeepTogether property tries to keep content of a subreport on one page. Because of this behavior, the report engine creates blank space on the main report if the subreport does not fit on the same page as the main report. Then, the report engine creates the subreport on a new page.

The work around that they list is essentially 'don't use subreports'

share|improve this answer
Thanks for pointing me toward the article. I guess I'll just have to do what I can and hope a fix comes out. I have a dynamic report builder that users use to create the reports, not using sub-reports (while not impossible) is out of the question. It would just take too much re-writing to make it worth the effort. – Dustin Brooks May 4 '09 at 18:04
2  
UPDATE ****THIS HAS BEEN FIXED IN SSRS 2008 R2******* It has been fixed with (SQL Server) Reporting Services 2008 R2. You can now toggle the KeepTogether on Sub-Reports. Pagination looks a lot better. – Dustin Brooks Dec 2 '10 at 17:18
*** This does not appear fixed in SSRS 2008 R2 **** Have seen the problem in two workplaces now, both with SSRS2008 (latest updates as at January 23 2012). Toggling keep together with sub-reports has no effect. – ElvisLikeBear Jan 23 '12 at 6:27
Are you sure it was 2008 R2? It is a separate update stream to regular SSRS2008... – Nathan Reed Feb 11 '12 at 15:50
This does seem to be fixed – Leo Hernandez Jun 12 at 20:40

I am not sure about the earlier version of SSRS, but I faced this same issue in SSRS 2008.

The solution is to change the Subreport property in Code.

  1. Go to the solution explorer, right click on your report and click on "View Code".

  2. Search for your Subreport.

  3. Inside subreport tag you'll find "<KeepTogether>", which would be set to "true", change it to "false"

This property is not avaiable from designer and has to be changed from the actual report xml code.

share|improve this answer
   
On item 3, your tag name is empty. I'm not sure what to look for. I have already tried looking for an empty tag name, but found nothing. – Josh C. Jul 19 '12 at 22:11
This worked for me. I went through the XML code behind for the report and changed every reference to KeepTogether to false – Leo Hernandez Jun 12 at 20:39

right click of subreport and chose format subreport, then uncheck keep object together

share|improve this answer
Doesn't exist in Reporting Services 2005. – Dustin Brooks Sep 27 '10 at 13:42
It does exist in 2005 under the Table->Layout Properties.. but unfortunately it doesn't do a thing.. – Bonez024 Mar 29 '12 at 19:42

Another way I got around this was to place the subreport in the report header. Of course that is very dependent on the report content and elminates any of the usefulness of subsequent sections but it did solve my problem of having a huge chunk of whitespace on the first page.

share|improve this answer
Was this done in 2008? Because you definitely cannot place a sub-report in the header or footer in 2005 – Bonez024 Mar 29 '12 at 19:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.