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

后端 未结 4 1944
梦毁少年i
梦毁少年i 2020-12-13 16:20

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

相关标签:
4条回答
  • 2020-12-13 16:25

    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 here enter image description here

    Delete Expression from Group details

    enter image description here enter 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 here enter image description here

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

    0 讨论(0)
  • 2020-12-13 16:25

    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".

    0 讨论(0)
  • 2020-12-13 16:25

    Maybe you can use a rectangle with pagebreak, the rectangle is able to define a fixed heigth

    0 讨论(0)
  • 2020-12-13 16:47

    What I did was create another property on your object called lineBreak or something. when loading the objects make sure every 25 has the same number and increment by 1. then in table put a group over the details, grouping on lineBreak. then add an extra line inside that group, then every 25th row should be a blank line.

    0 讨论(0)
提交回复
热议问题