Hi,
I have a MDX query which returns two rows with an empty row.
I wangt to filter out the empty row. how can i do that?
Find the below query and out put:
SELECT NON EMPTY{[Measures].[DocRev
Count]} ON 0
,NON EMPTY { NonEmpty([DimIchartsystem].[LastUpdatedDocRev].[LastUpdatedDocRev].ALLMEMBERS, [Measures].[DocRev Count])}
,NON EMPTY { NonEmpty([DimIchartsystem].[LastUpdatedDocRev].[LastUpdatedDocRev].ALLMEMBERS, [Measures].[DocRev Count])}
DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON 1 FROM
(SELECT ( STRTOSET("{[DimCustomer].[Group].&[Allina]}", CONSTRAINED)
) ON COLUMNS FROM
( SELECT ( STRTOMEMBER("[DimDate].[Day].&[20130501]", CONSTRAINED)
:
STRTOMEMBER("[DimDate].[Day].&[20130503]", CONSTRAINED)
) ON COLUMNS FROM [TextCube]))