Some calculated Member are not showing when NON EMPTY is ON
Old Query:
SELECT
{[Measures].[YTD Gross Claims Incurred WO IBNR]} on columns, {
TopCount(NONEMPTY([dimCustomerDimension].[Full Name].CHILDREN),
40 ,[Measures].[YTD Gross Claims Incurred WO IBNR]) } on rows
from [cubeClaimsTransFact]
WHERE ([dimTransactionTimeDimension].[Month Wise].[Month].&[2010]&[2])
New Query:
select { [Measures].[YTD Gross Claims Incurred WO IBNR]} ON COLUMNS,
TopCount(Filter([dimCustomerDimension].[Full Name].CHILDREN,
(NOT IsEmpty([Measures].[YTD Gross Claims Incurred WO IBNR])))
,40 ,[Measures].[YTD Gross Claims Incurred WO IBNR]) ON ROWS
from [cubeClaimsTransFact]
WHERE ([dimTransactionTimeDimension].[Month Wise].[Month].&[2010]&[2])
Comments
Post a Comment