Problem sub-total Matrix with rdlc report in vb.NET
Posted
by Keven
on Stack Overflow
See other posts from Stack Overflow
or by Keven
Published on 2010-03-22T17:12:43Z
Indexed on
2010/03/22
17:21 UTC
Read the original article
Hit count: 787
Hi everyone, I have a matrix and I need to add the money earned this year and past years. However, I must remove the money spent in past years. I must have the separate amount per year and the total of these amounts. This is what gives my matrix:
Year = Fields!Year.value =formatnumber((sum(Fields!Results.Value))-(sum(iif( Fields!Year.value & Parameters!choosedYear.Value, Fields!Moneyspent.value,0))), 2) & "$"
However, the subtotal gives me an error. What should I do?
P.S.: I already found that the subtotal gives me an error because it's not in the scope of the rowgroup1, but is there a way to get the scope in the subtotal? or can anybody find another way to do it?
© Stack Overflow or respective owner