My current table has a grouping by Client's and the tablix displays all transaction's per each client and Total per client. On the bottom of the tablix I have a grouping to sum each client's Amount but I'm having trouble for the Report Total Suming because it's an expression.
The expression is
Total Expression =Last(Fields!Balance.Value, "TransactionDTO")
and it grabs the final balance row and sums it instead of summing all transaction rows.
My question is how do I sum that expression? My ReportTotal row, Total column should be something like below but that didn't work.
ReportTotal Expression = Sum(Last(Fields!Balance.Value, "TransactionDTO"))
=SUM([Balance])
If you can provide a sample output it will be easier to find a solution. - Anup Agrawal