按年份过滤时,SSAS动态设置具有错误的值

时间:2016-09-21 10:30:49

标签: ssas mdx

我们的想法是按成本排列顶级协作者。问题是,当我想看到每年,只有选择年份并在尺寸上使用它才能工作。如果我拖动以查看超过一年,则该值不正确(因为计算是相同的,但是2年,而不是2年分开)。集:

CREATE DYNAMIC SET [Top]
AS  TOPCOUNT
([Collaborator].[Nr Collaborator].[Nr Collaborator].MEMBERS
, ([Measures].[Nr Collaborator Distinct]*0.05)
, [Measures].[Cost]);

1 个答案:

答案 0 :(得分:0)

如果有人需要,找到解决方案:

CREATE DYNAMIC SET [Top]
AS GENERATE( {[Date].[Year].[Year].MEMBERS}, TOPCOUNT
(EXISTING [Collaborator].[Nr Collaborator].[Nr Collaborator].MEMBERS
, ([Measures].[Nº Collaborators Distincts]*0.05)
, [Measures].[Cost]));