如何控制 SSRS 报表中 table 的总行
How to control the Total Line of a table in an SSRS Report
我在下面创建了以下 SSRS 报告格式。如果项目列表超过 3 个项目,我将在分组中分页,项目列表继续。
问题出在第一页上 我希望在不是最后一页的任何页面上都有一个 summary/total 行,上面写着 "cont"。在最后一页上,我想显示总数。有什么建议吗?
QTY ITEM PRICE
1 item1 1.21
2 item2 2.25
3 item3 4.56
cont cont cont
QTY ITEM PRICE
4 item4 1.21
5 item5 2.25
6 item6 4.56
21 16.04
您可以使用函数 RowNumber("ScopeName")
to calculate the current value's row number, and use this to check if it is the same as the total scope row count, CountRows("ScopeName")
。
我在下面创建了以下 SSRS 报告格式。如果项目列表超过 3 个项目,我将在分组中分页,项目列表继续。
问题出在第一页上 我希望在不是最后一页的任何页面上都有一个 summary/total 行,上面写着 "cont"。在最后一页上,我想显示总数。有什么建议吗?
QTY ITEM PRICE
1 item1 1.21
2 item2 2.25
3 item3 4.56
cont cont cont
QTY ITEM PRICE
4 item4 1.21
5 item5 2.25
6 item6 4.56
21 16.04
您可以使用函数 RowNumber("ScopeName")
to calculate the current value's row number, and use this to check if it is the same as the total scope row count, CountRows("ScopeName")
。