MDX query to count number of product names
问题 I am new to MDX and trying to count number of product names on a week basis. I have written the below MDX query, but I get all product count as a result. WITH MEMBER [Measures].[Count Of Members] AS Count(Existing [Product Dimension].[ProductName].Members) SELECT {[Measures].[Count Of Members]} ON 0, NON EMPTY { [Date Dimension].[Financial WC] } ON 1 FROM [Cube] WHERE ([Date Dimension].[FinancialYear].&[2018/19], [Sales].[PaymentType].&[Delivery]) I am getting result as : "All 230" as there