Essentially, I'd like to have separate row counts per grouping. I believe I'm supposed to use RowNumber
. This seems to have been discussed but I'm having difficulty due to the fact that my groupby is not a string constant.
My attempts have lead to something that is similar to :
=RowNumber(Parameters!GroupBy1.Value)
The SSRS report doesn't load if I have this set as it is.
Row counts per DS work. If instead I use:
=RowNumber("NameOfMyDataSet")
I'll have row counts successfully, but without resetting per group.
How can I reset the row-count per group if I'm using a variable group-by name?