My icCube report contains a Pie Chart( 5 top client + "Other") and a histogram, when I select a client on Pie Chart, the histogram change.
Using the following mdx In my Pie Chart
WITH
CATEGORY CALCULATED MEMBER [Client].[Client].[All].[Autre] AS SubCubeComplement( TopCount ( Order ( [Client].[Client].[idclient] ,[Measures].[venteT] , DESC ) ,5) )
SELECT { NONEMPTY([Measures].[venteT]),[Measures].[DateC] } ON 0 ,
{ NONEMPTY(TopCount ( Order ( [Client].[Client].[idclient] ,[Measures].[venteT] , DESC ) ,5)),NONEMPTY({[Client].[Client].[All].[Autre]})} ON 1
FROM (SELECT { @{dated![Time].[Time].[Jour]} } ON 0 FROM [CubeVente] )
where{Tail([Statvente].[Statvente].[statVente])}
CELL PROPERTIES VALUE
Using the following mdx In my Histogram
SELECT
{ Order( [Statut].[Statut].[statut].allmembers, [Measures].[DateC], BASC) } * { @{clientv![Client].[Client]} } ON COLUMNS,
{ NonEmpty( Order( [Time].[Time].[Année].allmembers, [Measures].[DateC], BASC), [Measures].[DateC]) } ON ROWS
FROM ( SELECT
{ @{dated![Time].[Time].[Jour]} } ON 0 FROM [CubeVente])
But when I select the cell "Other" in the PieChart, there is an error:
'[Client].[Client].[All-M].[Autre]' n'est pas une entité MDX connue
Is there a way to resolve this error? Txs, Marwen.