MDX 查询:一年中月份时间维度的累积值

问题描述

我想使用标准的“一年中的月份” 时间维度属性来累计我的净销售额的值。 因为它不是相同的层次结构,所以它可能不适用于 PeriodsToDate() 方法。 下面的查询是我在销售多维数据集中的 Analysis Services 项目中使用“年-月-日”作为计算的正常时间维度的初始累积。

    Case When [Time].[Year-Month-Day].CurrentMember.Level.Ordinal <> 0 
    Then ( 
    Aggregate 
        ( PeriodsToDate          
            ([Time].[Year-Month-Day].[Year],[Time].[Year-Month-Day].CurrentMember),[Measures].[netsales])      
    )

Explained as picture in data table: cumulative net sales per year of the month

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)