Sum total of report column

2019-08-09 16:32发布

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条回答
beautiful°
2楼-- · 2019-08-09 17:22

Have you tried:

=SUM(Fields!YourField.Value)
查看更多
登录 后发表回答