If I have 2 row groups; year and status, is it possible to show totals for all years grouped by status?
Year Status Value
2014 Open 100
Closed 200
2015 Open 200
Closed 300
Total Open 300
Closed 500
Until now I have always achieved this with a "workaround" (creating 2 rows in the total group and using hardcoded formulae =SUM(IIF(Status="Open",Value,Nothing)
etc but I would like to be able to do this "cleverly".