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?