Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有许多函数应用于 tablix 列中的行。我需要对 tablix 列中的所有行求和。我使用的是 Reporting Services 2005,所以 LOOKUP 不存在,我也无权访问 SQL 存储过程。
您的问题相当模糊,但我会解决这个问题。假设您在 tablix 列中有一个名为 Textbox5 的文本框。在页脚行(组页脚或 tablix 页脚)中,您可以使用如下表达式:
=Sum(ReportItems!Textbox5.Value)
在每行中解析函数后,这将总结该文本框中的值。
并且聚合函数只能用于页眉或页脚中的报表项目!!!