我有一个包含 Tablix 的报告,它又包含多个子报告。
我需要在报告的每一页之间有条件的分页符,我可以通过在 Tablix 中的最后一个子报告之后添加一个矩形来实现。然后我将矩形设置为在末尾有一个分页符,并使其可见性取决于传递给报告的参数。
这一切都很好,我在报告的重复部分之间得到了分页符,但是当分页符条件为真时,我最终在报告末尾有一个空白页。
有没有办法维持有条件的分页符但最后没有空白页?
我的报告结构如下所示:
<Report>
<Body>
<Tablix>
<Rectangle>
<Rectangle>
<SubReport>1</SubReport>
<SubReport>2</SubReport>
</Rectangle>
<Rectangle>
<SubReport>3</SubReport>
<SubReport>4</SubReport>
</Rectangle>
<Rectangle>Page break rectangle with conditional visibility</Rectangle>
</Rectangle>
</Tablix>
</Body>
</Report>