I have a report in Reporting Services and there is a group that is based around a field value. I want the group to repeat itself on the report as many times as there are rows with that field. The problem is that using Field!field.Value
seems to only pull distinct values. Since my dataset has rows that have duplicate values, they are not all showing.
When I declare my parent group, is there a way to tell it to group on every row in the parent group, not just the distinct rows?
Alternatively, is there a list of other options I can use other than just .Value
on my field?