我有一个带有两个字段的数据集的ssrs报告。我在字段1上分组,然后我在字段2上分组,现在我想显示子组中每个唯一项的计数。
这是数据集的样子
Route Driver
A Adam
A Adam
A John
B Adam
A John
and so on
这就是我想让报告看起来像的样子
Route Driver Count
A
Adam Count of number of times Adam appears in this child group.
John Count of John
Total total for all
B
Adam 25
Mike 5
Total total
C
Josh 10
and so on
但是,这就是它目前的样子。
Route Driver Count
A
Adam count
count
count
count
continues till the number of times Adam appears
B
Adam 25
25
25
25
continues 25 times
Mike 5
continues 5 times
C
Josh 10
continues 10 times
这是我的设计视图
有关如何做到这一点的任何建议?我也愿意修改我的数据集。