I have a MDX query that gets Sales depending on Date, StateProduct and Country. Now I need to know how many Sales are in One particular country and how many in the rest. Is it possible to filter Sales measure into two differents measures? Like in the example:
MEMBER [Measures].[SalesOneParticular] AS Filter Sales measure in One particular country.
MEMBER [Measures].[SalesOthers] AS Filter Sales measure in Other countries
SELECT {[Measures].[SalesOneParticular],[Measures].[SalesOthers]} ON COLUMNS
Thanks in advance.