我在 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 命令。有没有办法让它按预期工作?