If mean to define on which point the page breaks, you could go on the top menu to :
reports -> report properties and play around with the page height, until it breaks where you want.
- Edited by parthi7 Thursday, September 27, 2012 12:50 PM
- Proposed as answer by Somkiat Supasakoonarpapiboon Tuesday, March 24, 2015 11:17 AM
- Unproposed as answer by Somkiat Supasakoonarpapiboon Tuesday, March 24, 2015 11:18 AM
Hi Parthi7,
Based on your scenario, we can use the conditional page break to achieve the requirement. Please follow the steps below:
1. Click the Details group in the Row Groups pane.
2. From the Tablix member Properties pane, expand Group-> PageBreak.
3. Set the BreakLocation to End and set the Disable property to the expression like below:
=IIF(rownumber(nothing) mod 10=0,false,true)
The screenshot below is for your reference:
If you have any questions, please feel free to ask.
Regards,
Charlie Liao
- Proposed as answer by Syed Qazafi AnjumModerator Friday, September 28, 2012 7:45 AM
- Marked as answer by Elvis LongMicrosoft contingent staff, Moderator Friday, October 05, 2012 3:22 AM
Hi All,
Conditional page break in RDLC is a huge task because of the missing property in RDLC which is avaialble there in SSRS.
I am showing you a workaround for this problem which works across all the scenarios.
Our main report is consist of several subreports and the supreport page break property " Page break at start ","page break at end" does"nt meets our expectations most of the times.
Follow these simple steps to achieve your goal.
1 insert a empty subreport after each subreport in the main report.
2.Control the visibility of the subreport by any parameter passed from backend.
3.Go to subreport group properties and check the page break property "Between each instance of a group" and also check "at the end of the group".
4.In this way you can achieve the conditional page break in rdlc when you have multiple subreports inside main report .
- Proposed as answer by Abhishek gaurav 2013 Thursday, January 31, 2013 11:48 AM
Hi All,
Conditional page break in RDLC is a huge task because of the missing property in RDLC which is avaialble there in SSRS.
I am showing you a workaround for this problem which works across all the scenarios.
Our main report is consist of several subreports and the supreport page break property " Page break at start ","page break at end" does"nt meets our expectations most of the times.
Follow these simple steps to achieve your goal.
1 insert a empty subreport after each subreport in the main report.
2.Control the visibility of the subreport by any parameter passed from backend.
3.Go to subreport group properties and check the page break property "Between each instance of a group" and also check "at the end of the group".
4.In this way you can achieve the conditional page break in rdlc when you have multiple subreports inside main report .
Hi,
Do you have any idea about how we do grouping in subreports? In my case , i have a main report called enquiry which is getting grouped according to enquiryno. But my sub report is not getting grouped according to enquiryno.
For eg: report with different enquiryno should be on different page.
That is happening for the main report, but inside sub reports with different enquiryno are not displayed on different pages.
Can anyone help please?
Thanks!