mdx中non empty与nonempty的区别解决思路

mdx中non empty与nonempty的区别
可有人能详细讲解下non empty与nonempty的区别?

------解决方案--------------------
non empty与nonempty 运算符的确很象。
nonempty 是对轴过滤。
non empty 是对元组过滤。
------解决方案--------------------
我说的是将叉集元祖个数减少的一种方法,如下:
SQL code

SELECT NON EMPTY {M1,M2,M3,M4,M5,M6} ON 0,
  Generate(客户.ALLMEMBERS ,
  Crossjoin(客户.currentMember,
     Generate(员工.ALLMEMBERS ,
     Crossjoin(员工.currentMember,
         Generate(时间.ALLMEMBERS, 
         Crossjoin(时间.currentMember,
             filter(产品.ALLMEMBERS,
         not (isempty(M1) and isempty(M2) and isempty(M3) and isempty(M4) and isempty(M5) and isempty(M6))
             )
     ))
      ))
   ))

ON 1 
FROM DW