Hello,
Here is my code
WITH MEMBER [Measures].[Direct Reporting] AS [Employee].[Employees].CurrentMember.Children.Count MEMBER [Measures].[Indirect Reporting] AS DESCENDANTS([Axe_ORGANISATION].[Collaborateurs].[PLATEAU], 2, AFTER).Count SELECT { [Measures].[Direct Reporting], [Measures].[Indirect Reporting] } ON COLUMNS, { [Axe_ORGANISATION].[Collaborateurs].[PLATEAU].MEMBERS } ON ROWS FROM [PVC_Reporting] Direct Reporting Indirect Reporting
The problem is that the first measure gives me error and the second gives me the count of all values and does not give me the total by each dimension.
Any idea


