Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to page break after specific row(Suppose 25 rows) in rdlc reporting

How to page break after Specific rows (like 15 rows) in rdlc reporting.

like image 631
yeasir007 Avatar asked May 06 '12 04:05

yeasir007


People also ask

How do I create a row group in Rdlc report?

To open the Report Builder, select “Layout” From the “View” menu. Provide the fields in the dataset in a table by right-clicking ->insert -> table. To create a group, on the left side of the screen, right-click and choose Add Group ->Row Group ->Parent Group. Choose the required option for grouping.


2 Answers

It's so easy.Suppose My reports looks like

enter image description here

Enable advance mode

enter image description here

Add a group for page break

enter image description here

Define the number of rows what do you want in the group expression(In this case i want 15 rows)

enter image description here

Delete group column if you not need

enter image description hereenter image description here

Delete Expression from Group details

enter image description hereenter image description here

Select Group Properties and set page break attribute breakLocation as End,Disables as false and RestPageNumber as fasle.

enter image description here

Select Group Details Properties and Set Disable=true

enter image description here

Now here's the report with page break after specific row

enter image description hereenter image description here

If You want to keep Table Header in every page than click here

like image 174
yeasir007 Avatar answered Sep 19 '22 16:09

yeasir007


You can add Row Group to your Tablix. Then in row group properties select Page Break section and set "Between each instance of a group".

like image 32
Artemy Avatar answered Sep 21 '22 16:09

Artemy