向下钻取反向层次结构会给出不正确的结果
drill down on reversed hierarchy gives incorrect results
我在 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 命令。是否有解决方法让它按预期工作?
简答。
抱歉,当前版本的 iccube 的 pivot table 不支持 post 标志。
我在 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 命令。是否有解决方法让它按预期工作?
简答。
抱歉,当前版本的 iccube 的 pivot table 不支持 post 标志。