在ssrs 2008中使用矩阵在每个组之后添加列标题

时间:2016-04-11 19:45:26

标签: reporting-services ssrs-2008 ssrs-2008-r2

我有一个矩阵:

id name score 
1    A    5   
2    B    5   
1    A    4   
4    C    2 
2    B    4   

我正在做的是根据id和name对矩阵进行分组,并在ssrs 2008 rdl中进行排序,输出变为:

id name score
1   A   9
2   B   9
4   C   2

我需要做的是在每个组之前重复列标题,如:

Score:9
id name 
1  A
2  B
Score:2
id name
4  C

我找不到怎么做。如果有人帮忙我很感激。最好的问候。

1 个答案:

答案 0 :(得分:0)

  1. 添加行组=>分组依据:分数和勾选添加组标题。
  2. 删除第1列和第1行。现在你的桌子应该是这样的
  3. enter image description here

    1. 相应地填写所需信息。
    2. 第一行的表达式应为:="Score : " + CStr(Fields!score.Value)

      然后你的桌子设计应该是这样的:

      enter image description here

      1. 结果如下:
      2. enter image description here