I'm trying to put page totals on a Windows Form 2008 RDLC report using
for the textbox, but I get the following error.
"The Value expression for the textbox ‘textbox17’ refers to a field. Fields cannot be used in page headers or footers."
Is there anyway around this? I want the totals for each page, not a running total.
On another note, why did they make these reports so that you can't use the fields in the page header or footer without resorting to using Report Items? Am I going to have to use some sort of code to sum these?
Auguy
Sylvania/Toledo Ohio
Code:
=SUM(Fields!buyprice.Value)
"The Value expression for the textbox ‘textbox17’ refers to a field. Fields cannot be used in page headers or footers."
Is there anyway around this? I want the totals for each page, not a running total.
On another note, why did they make these reports so that you can't use the fields in the page header or footer without resorting to using Report Items? Am I going to have to use some sort of code to sum these?
Auguy
Sylvania/Toledo Ohio