Let's say I have a dimension of customers, and I'd like to get all those customers, who generated revenue greater than 100... How do you do that in MDX? I have created a member, using a filter such as this
Filter([Dim Customer].[Id].Members, [Measures].[Revenue] > 150)
However it's not working as expected. How do you usually go around this? I'd like to see 1 row, with 2 columns, all revenue and the revenue from customers that generated more than 150. My problem is that since I don't want the rows of customer to be displayed on the rows axis - it is not considering the filter per customer, but on the whole [Measures].[Revenue].