NoWar
NoWar

Reputation: 37633

How to move Tablix row to the next page?

Is it possible to set up Tablix somehow or via code so the entire row will be moved to the next page instead of placing between two? MS Word can do it easily...

enter image description here

Reading of http://msdn.microsoft.com/en-us/library/dd239384.aspx is not helping...

Upvotes: 0

Views: 759

Answers (1)

Bactos
Bactos

Reputation: 1243

You can set a group and call it 'NumberOfRows' Then you can use the =Floor((RowNumber(Nothing) - 1)/NumberOfRowsYouWant) on that groups expression.

Here are some links: http://jeffprom.com/2012/05/11/ssrs-page-break-after-x-number-of-rows/ http://hussain-msbi.blogspot.com/2012/07/page-break-at-nth-row-in-ssrs-report.html

Upvotes: 1

Related Questions