reporting services - sum tablix column values

谁都会走 提交于 2019-12-20 07:13:19

问题


I have many functions applied to rows in a tablix column. I need to sum all the rows in a tablix column. I am using reporting services 2005, so LOOKUP doesn't exist and I also do not have access to the SQL stored procedure.


回答1:


Your question is rather vague, but I'll take a crack at the problem. Let's say that you have a textbox in the tablix column called Textbox5. In a footer row (either a group footer or the tablix footer), you can use an expression like this:

=Sum(ReportItems!Textbox5.Value)

That will sum up the values in that textbox after the functions have been resolved in each row.




回答2:


And aggregate function can be used only on report items place in Header or Footer !!!!



来源:https://stackoverflow.com/questions/11418466/reporting-services-sum-tablix-column-values

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!