Hi
My first post after 2 years using SSRS. Thanks for sharing your knowledge all this time.
I´ve got a Dataset as follows:
ID | Row&ColumnValue | RowOrColumn | |
100012 | A | Column | |
100012 | 1 | Row | |
100050 | A | Column | |
100050 | 7 | Row | |
100024 | D | Column | |
100024 | 4 | Row | |
100098 | A | Column | |
100098 | 1 | Row | |
100055 | C | Column | |
100055 | 3 | Row |
And I am trying to get this result in a Tablix
A | C | D | |
1 | 2 | 0 | 0 |
3 | 0 | 1 | 0 |
4 | 0 | 0 | 1 |
7 | 1 | 0 | 0 |
I have used group filters: RowGroup RowOrColumn = Row, ColumnGroup RowOrColumn = Column, but with these filters I come up with all 0s in the body with COUNT(Fields!ID.Value).
For testing purposes I have tried COUNT(Fields!ID.Value, "RowGroup") and COUNT(Fields!ID.Value, "ColumnGroup") and I get what I would expect respectively:
A | C | D | |
1 | 2 | 2 | 2 |
3 | 1 | 1 | 1 |
4 | 1 | 1 | 1 |
7 | 1 | 1 | 1 |
and
A | C | D | |
1 | 3 | 1 | 1 |
3 | 3 | 1 | 1 |
4 | 3 | 1 | 1 |
7 | 3 | 1 | 1 |
I think I have done this before but I don't know why it is not working now. Please help
Thanks in advance