【发布时间】:2015-05-06 10:28:42
【问题描述】:
我在icCube中有如下MDX语句(基于标准销售模型):
with
set [time-set] as hierarchize({[Time].[Calendar].[All Periods],[Time].[Calendar].[Year].members,[Time].[Calendar].[Year].[2009].children},post)
member [issue] as [amount], caption = "drill down on 2008"
select [issue] on 0
, [time-set] on 1
from sales
这给出了以下结果:
点击 2008 年时:
我认为 IDE 有点混乱,因为我使用了 POST 命令。是否有解决方法使其按预期工作?
【问题讨论】:
-
你的[时间设置]中有这个......
[Time].[Calendar].[Year].[2009].Children。为什么要指定 2009 年?