SSRS矩阵显示层次结构

时间:2013-09-05 14:05:19

标签: tsql view reporting-services tree hierarchy

我正在处理一个报告,我必须显示具有6级子层次结构的类别。

让它更容易理解: 多个类别,每个类别都有多个属性,每个属性都可以有多个子属性,这些子属性可以有子属性等等。

select语句结果如下:

ModellID | ModellName| ParentLevelID | LevelID | LevelName | ParentAttributeID | AttributeID | AttributeName

报告应该如下:

             Level 1       Level 2   Level 3   Level 4 ...
Modell A | Attribute A | Child A | Child A |         |
         |             |         | Child B | Child A |
         |             |         |         | Child B |
         |             | Child B | Child A |         |
         | Attribute B | Child A |         |         |
         | Attribute C | Child A | Child A |         |
         |             |         | Child B |         |
         |             |         | Child C |         |
         |             | Child B | Child A |         |
Modell B | Attribute A | Child A | Child A | Child A |
         |             |         |         | Child B |

我尝试制作一个矩阵,其中Category为行组,level为列组,Attribute为value,但这只显示每个类别的第一条记录。

此外,我在谷歌的帮助下尝试了多项建议,但我无法让它们发挥作用。

非常感谢任何帮助或建议!

示例数据:

Create Table hierarchy_ssrs (
    ModellID uniqueidentifier,
    ModellName varchar(max),
    ParentLevelID uniqueidentifier,
    LevelID uniqueidentifier,
    LevelName varchar(max),
    ParentAttributeID uniqueidentifier,
    AttributeID uniqueidentifier,
    AttributeName varchar(max)
)

https://dl.dropboxusercontent.com/u/108638325/Example_Data.xlsx

您可以通过SQL Management Studio导入数据。 右键单击数据库 - >任务 - >导入数据 - >数据来源:MS Excel - >浏览文件 - > ......进一步的步骤应该是不言自明的。

提前致谢!

1 个答案:

答案 0 :(得分:0)

我找到了解决问题的方法。

对于数据集,我使用了一个select语句,并多次将表连接到自身。 在报表生成器中,我使用select语句列作为表中的列创建了一个表。之后,我为每列创建了一个行分组,并删除了相应的旧列。

这是select语句的sql代码。

select hs1.ModellName as Modell, 
    hs1.AttributeName as [Level 1],
    hs2.AttributeName as [Level 2],
    hs3.AttributeName as [Level 3],
    hs4.AttributeName as [Level 4],
    hs5.AttributeName as [Level 5],
    hs6.AttributeName as [Level 6]
from hierarchy_ssrs hs1
    left join hierarchy_ssrs hs2 on hs2.ParentAttributeID = hs1.AttributeID
    left join hierarchy_ssrs hs3 on hs3.ParentAttributeID = hs2.AttributeID
    left join hierarchy_ssrs hs4 on hs4.ParentAttributeID = hs3.AttributeID
    left join hierarchy_ssrs hs5 on hs5.ParentAttributeID = hs4.AttributeID
    left join hierarchy_ssrs hs6 on hs6.ParentAttributeID = hs5.AttributeID
where hs.ParentAttributeID is null
order by Modell,
    LevelName,
    [Level 1],
    [Level 2],
    [Level 3],
    [Level 4],
    [Level 5],
    [Level 6]