I have an SSRS tablix similar to this:
+----------+-----------+--------+--------+
| Total | RowGroup | Group1 | Group2 |
+----------+-----------+--------+--------+
| Perdiod1 | RowGroup1 | Value | Value |
| | RowGroup2 | Value | Value |
| Perdiod2 | RowGroup1 | Value | Value |
| | RowGroup2 | Value | Value |
| Perdiod3 | RowGroup1 | Value | Value |
| | RowGroup2 | Value | Value |
+----------+-----------+--------+--------+
Now, for each period, I want to calculate the count in each group. When I do:
Count(TableValue.Value, "Perdiod")
I get the total for the period (for both column groups). When I do
Count(TableValue.Value, "ColumnGroup")
I get the total for all periods. So really, what I need to do is something like this:
Count(TableValue.Value, "TablixRow", "TablixColumn")
which obviously doesn't exist.
So 'Value' should be a total count for a group within a Period (therefore, in the example given above, Value would be repeated twice in each Period (once for each RowGroup))
Is there a way to display the count of all the values within a specified column and row group in an SSRS's tablix?