使用mdx数值函数如avg、count等的时候,通常会忽略空单元格!唯一的例外是count函数。它提供了includeempty 参数,指明是否包括空单元格。 1:non empty关键字 一般使用在轴级别。 select {[measures].[store sales]} on columns, non empty {[time2].[所有 time2].[1997].[q4].[10].children} on rows from sales 显示1997年10月每日非空的销售。 无non empty关键字则显示所有销售。 2:count 10月销售日计数(无论有无销售) with member [time2].[销售日] as 'count([time2].[所有 time2].[1997].[q4].[10].children)' select {[measures].[store sales]} on columns, {[time2].[销售日]} on rows from sales
10月销售日计数(仅包括有销售日期) with member [time2].[销售日] as 'count([time2].[所有 time2].[1997].[q4].[10].children, excludeempty)' 3:sum和avg等函数 这些函数对于空单元,则忽略!(不转换为0)