I want to write an MDX expression that uses a measure value in the WHERE statement.

For example: suppose I want to show the income from sold products in stores in different cities, but I only want to count the income for sold products that have a price over $10.

This is what I tried but it doesn't work:

WHERE ([MEASURES].[Price]>10)

How can I do this using MDX?

link|improve this question

50% accept rate
feedback

1 Answer

If you have an access to olap db you can just create another metric Price (for example create expression for your fact table on DSV and create metric on this field) and use it for your further calculations. But if you don't have an access to db, you can try following script:

WITH
MEMBER [Measures].[Price10] AS
    'IIF([Measures].[Price] < 10,0,[Measures].[Price])'
MEMBER [Measures].[COST] AS
    '[Measures].[Price10]*[Measures].[Unit Count]'
SELECT
    {[Measures].[COST]} ON COLUMNS,
    {[Customer].[Customer Geography].[City].Members,[Customer].[Customer Geography].[All Customers]} ON ROWS
from [Adventure Works]

It's just a suggestion... and it depends on aggregation type which uses for calculating metric Price.

link|improve this answer
Thanks for the answer! I do have access to the olap db but the thing is that the price limit should be inputed by the user so I don't know before hand what the limit will be. The second script is too complex I think, I have a lot of other options for the user to input as well, so the mdx query will be too large for me to handle. But thanks for the help! – user725573 Aug 18 '11 at 7:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.