How to find last record of groupfooter on RDLC report?
I need to find last groupfooter. because it calculates amount each records.
example:
record1: 5
groupfooter amount:5
record2: 6
groupfooter amount:11
record3: 7
groupfooter amount:18
Total amount is 34 //It is wrong. I need a total amount 18
What should I do?
0