I have googled a lot about this but found nothing useful. This has been asked before here but noone has responded.
I have a tablix that presents grouped data with an amount column:
Tablix (data)
Name (group)
Amount (rows)
If the “Name” group spans more than one page I want to show a page total for the sum of the amounts present on the first page. On the next page the carried forward total of the previous page must be shown.
I have tried many things, especially with my custom assembly (like keeping a dictionary with the total of each group and in the footer of the report try to show the total etc). The thing that really messes up any implementation is the order where report’s header, body and footer are “executed”.
Any ideas or suggestions?
Due to:
I decided to go with showing the group page total in the footer, storing it and the picking it up to show it to the next page.
This is done by having a cumulative total column using
which for the last detail row is setting it to “Nothing”
In the footer a textbox picks up the last value of that cumulative total field.
and stores the current total in a private field in the embedded code.
And last in the page footer the stored total is picked up
It is too simple, but still it is the closest I could get with what I have after many trials!