1

我有一个维度层次结构:

B - C - D - E

和一项措施:

measures.eur

如果我让计算成员:

AVG([hierarchy].[All],[Measures].[eur])

我可以从层次结构顶层的所有层次结构成员中获得单一平均值。但是我希望从层次结构的每个级别计算出不同的平均值。

So that when selecting hierarchy member C it shows the AVG of all the C's in the hierarchy, when selecting B it's AVG of all B's and so forth..

我试过:

 AVG(
 [HIERARCHY].PARENT,
[Measures].[eur]      
)

但这并没有给出层次结构级别所有成员的平均值,但它非常接近我想要的。

4

1 回答 1

2

您可以使用 level 函数尝试以下表达式:

AVG ( [selected-member-of-c].level.members, [Measures].[eur] )
于 2013-03-22T08:35:56.017 回答