Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

insert a simple page break in rdlc report

This is a very simple thing, but I just haven't been able to find anything. I have a report and at the end, I have a "totals" row. I simply want to insert a page break before this row so that it prints on a separate page. How do I do this?

like image 608
Riz Avatar asked Apr 24 '13 17:04

Riz


1 Answers

This is the MSDN page on how to set page breaks in a report.

The page states that:

Item page breaks apply only to the report items rectangle, table, matrix, list, and chart.

So I think to put the row total control on it's own Rectangle that is added after the Tablix, but does not overlap with the Tablix. Then specify in the Rectangle properties that it should have a page break before it.

I also found this link that explains how to force a page break after a specific row, which may help if your total is part of the Tablix:

Page break after Specific rows in rdlc reporting

like image 165
Gustav Bertram Avatar answered Sep 24 '22 15:09

Gustav Bertram