I have this report structure
MasterReport
SubReport
Each tablix in the subreport is hidden if it doens't have rows
HIDDEN: =CountRows() = 0
Moreover each tablix should be on a new page. So I've added for all the tablix the PageBreak setting as follows
The problem is that I have an extra blank page at the end of the report if the last tablix has rows an is visualized as a consequence.
So I've tried to play with last tablix PageBreak.Disabled option but with no success so far. My original idea was to disable page break if current page is last page ( mapped to Report.Code the global parameters so that I can use them in Body as suggested in this SO answer, but page numbers returned are not correct as ther are always 1) and it didn't work.