Sum total of report column

不羁的心 提交于 2020-01-06 02:43:27

问题


I try to sum the total of a column of my report based on =ReportItems!Textbox135.Value

This field is not included in the dataset, but is a textfield in the report. I use the following expression in the group header of my report

=SUM(ReportItems!Textbox135.Value)

Which results in the error:

Aggregate functions can be used only on report items contained in page headers and footers

What is the correct expression to sum report items?


回答1:


Have you tried:

=SUM(Fields!YourField.Value)


来源:https://stackoverflow.com/questions/30480345/sum-total-of-report-column

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