reporting services - sum tablix column values

后端 未结 2 961
长发绾君心
长发绾君心 2021-01-27 09:28

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

相关标签:
2条回答
  • 2021-01-27 10:11

    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.

    0 讨论(0)
  • 2021-01-27 10:17

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

    0 讨论(0)
提交回复
热议问题