filter product list in MDX -
08-22-2006
, 03:49 AM
In a reporting services report based on a cube I have a parameter in which I
only want to show the values which have measures in a measuregroup associated
with it. For Example: I only want to choose products which have sales in the
cube. (Retrieving the values outside the cube is not an option)
This is the current dataset which fills the parameter list:
WITH MEMBER [Measures].[ParameterCaption] AS '[Kalender].[Jaar Nummer
Lang].CURRENTMEMBER.MEMBER_CAPTION' MEMBER [Measures].[ParameterValue] AS
'[Kalender].[Jaar Nummer Lang].CURRENTMEMBER.UNIQUENAME' MEMBER
[Measures].[ParameterLevel] AS '[Kalender].[Jaar Nummer
Lang].CURRENTMEMBER.LEVEL.ORDINAL' SELECT {[Measures].[ParameterCaption],
[Measures].[ParameterValue], [Measures].[ParameterLevel]} ON COLUMNS ,
[Kalender].[Jaar Nummer Lang].ALLMEMBERS ON ROWS FROM [Cube]
How can I realise this?
Thanks.
Pieter |