我想使用下面的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];