我最近开始遇到奇怪的问题,如下图所示。浏览SSAS多维数据集时,维度名称显示为空白。
Dimension: I have [Date].[Calendar Month].[Month]
Measure: [Services in 3 days]
运行像
之类的查询后Select [Date].[Calendar Month].[Month] on 0 From [Service Cube]
然后,维度成员名称显示在多维数据集浏览器中,具有不同的度量值。
任何线索?
答案 0 :(得分:1)
那是因为[Date].[Calendar Month]
层次结构中有空白成员。要查看“退出”,请运行以下MDX
查询:
WITH SET BlankMonth AS
FILTER([Date].[Calendar Month].CHILDREN, [Date].[Calendar Month].currentmember.MEMBERVALUE = '')
SELECT [Measures].[Services in 3 days] ON 0,
BlankMonth ON 1
FROM [Service Cube]