I have a report with 5 groups in a Tablix. I want to have 15 total lines based on a filter of amounts within that group. A simplified version:
Group1 Cost Center Relationship Type Amount
A 100 Rel1 Small 100
A 100 Rel1 Med 100
A 100 Rel2 Small 200
Total for A Small: 300
Total for A Medium: 100
I cannot group on Type because I am ordering by Relationship.
I added 2 more group rows to make 3 (one for each Type). I used "Add total" to the existing group. I tried using an IIF(Fields!Type.value="Small",SUM(Fields!Amount.value),0) in the group row but all I get is zeroes. I am not sure if I need to specify a scope because it is in the group already.