Link to home
Start Free TrialLog in
Avatar of trigeminus
trigeminus

asked on

Sum subtotal on each page - rdlc report

I need to get sum subtotal on each page of report, like below.
Can anybody help me?

page -1-

sum11           0.00
----------------------
a11            100.00
.          
.      
.
a1n            200.00
----------------------
sum12       300.00 (sum11+a11+..+a1n)


page -2-

sum21       300.00 (sum12)
----------------------
a21            400.00
.
.
.
a2n            500.00
----------------------
sum22    1,200.00 (sum21+a21+..+a2n)


page -3-
.
.
.

Thanks.

ASKER CERTIFIED SOLUTION
Avatar of JestersGrind
JestersGrind
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of trigeminus
trigeminus

ASKER

Thanks for your suggestion Greg, but how to group the data by page (1 group - 1 page)?
Without grouping total sum repeats on each page.