Click here to Skip to main content
15,885,908 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Is there a way to calculate sum per row of table in rdlc report. To be of the following form:

Initial amount: x.

Number-----Amount-----Payment-----Sum
1---------------a-------------p1----------(x+a-p1)
2---------------b-------------p2----------(x+a+b-(p1+p2))
3---------------c-------------p3----------(x+a+b+c-(p1+p2+p3))
4---------------d-------------p4----------(x+a+b+c+d-(p1+p2+p3+p4))
5---------------e-------------p5----------(x+a+b+c+d+e-(p1+p2+p3+p4+p5))
Posted

Perhaps you could do the cumulative total on SQL and then populate the report?

If so, please refer

http://stackoverflow.com/questions/2120544/how-to-get-cumulative-sum[^]
 
Share this answer
 
Comments
AR1988 13-Feb-13 6:06am    
I need to do it in rdlc expression not in sql
You could use an expression which uses =Sum(Field1!Value) + Sum(Field2!Value).....
 
Share this answer
 
Comments
AR1988 13-Feb-13 6:07am    
I'm using the sum expression but need it to be nested with IIF to check for row index

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900