I have a calculated member which brings the total Sales for all Shops. The formula I used is this:
SUM(([SHOP].[SHOP].Members), [Measures].[SALES])
So, even if I filter for one Shop, the above calculated member still brings me the total for all shops.
The problem is that if I filter for any other dimension (let's say Region), my calculated member will bring me the total ONLY for the selected Regions - which I know is the correct behaviour.
But how can I make a calculated member that brings me the total Sales for all the Shops regardless of any filter?