Using SSRS 2008R2
I have a matrix set up displaying % values in each cell:
ColGrp1 ColGrp2 ColGrp3
RowGrp1 5% 80% 50%
RowGrp2 .. .. ..
RowGrp3 .. .. ..
The expression deriving the percentage value is as follows:
=Sum(Fields!FieldX.Value)
/
Count(Fields!FieldX.Value)
Field X contains either a 0 or a 1 in the dataset, so I'm seeing the percentage of the 1's in the data above - this is fine.
My issue is that I need to include the min, max and avg values for each row group:
Col1 Col2 Col3 Min Max Avg
5% 80% 50% .. .. ..
.. .. .. .. .. ..
.. .. .. .. .. ..
The avg value is fine as I have just created a column outside of the column group and used the same expression as above.
However, I'm unable to find a way to get the Min and Max % values.
Any ideas?