SSRS table 只有内部边界 - 可能吗?

SSRS table with inside borders only - possible?

我想在 Visual Studio 2013 年的 SSRS (RDLC) 报告中添加一个 table 对象 (Tablix),该对象 (Tablix) 仅在 table 内具有边框(仅在行之间,我不需要列之间的边框),但不需要外部边框,就像在 Excel 中执行此按钮:

我已使用以下表达式指定 Tablix 列内元素的 Bottom BorderStyle:

=IIF((RowNumber(Nothing) Mod 2)=1, "Dotted", "None")

考虑到我在 Tablix 中每页总是恰好有 2 行。

我想通用公式看起来像这样:

=IIF((RowNumber(Nothing) Mod numberOfRowsPerPage)=numberOfRowsPerPage-1, "Dotted", "None")

它应该删除页面上的最后一条边框线。虽然此解决方案需要在 table.

中每页具有固定的行数