MDX内部成员属性为null

时间:2016-02-01 17:23:33

标签: reporting-services ssas mdx

我想使用下面的MDX查询为SSRS报告中的过滤器创建MDX数据集。对于我的维度中的一个成员,属性返回NULL。问题是,这种类型的脚本在我所有其他维度上都是完美的,只有2014/25年度的第一个成员为其属性返回NULL。有什么想法吗?

WITH 
  MEMBER [Measures].[ParameterCaption] AS 
    [Time].[Fiscalyear].CurrentMember.Name 
  MEMBER [Measures].[ParameterLevel] AS 
    [Time].[Fiscalyear].CurrentMember.Level.Ordinal 
SELECT 
  {
    [Measures].[ParameterCaption]
   ,[Measures].[ParameterLevel]
  } ON COLUMNS
 ,[Time].[Fiscalyear].[All].Children ON ROWS
FROM [Cube];

结果如下:
enter image description here

0 个答案:

没有答案