I have a report with a grouping, typically each group has 5 - 6 rows and a value. I want the report to have an overall sum() total based on the last() value of the group.
like ..
order,seq,value
123,1,245
123,2,300
123,3,100
group total = 100
order,seq,value
456,1,246
456,2,400
456,3,900
group total = 900
report total = 1000
I can add the group total using last() but then can use it to have a sum() of it for the whole report. I'm using SSRS 2005 sp2.
Thanks
A
like ..
order,seq,value
123,1,245
123,2,300
123,3,100
group total = 100
order,seq,value
456,1,246
456,2,400
456,3,900
group total = 900
report total = 1000
I can add the group total using last() but then can use it to have a sum() of it for the whole report. I'm using SSRS 2005 sp2.
Thanks
A