Hi
I have a SSAS2005 calculated member defined like this:
----------------------------
count (
FILTER(
[Customer].[Customer_id].members
, [Measures].[Value A] > 0 and [Measures].[Value B] > 0) )
-----------------------------
It gives me the number of unique customers who has both a Value A and a Value B depending on what I look at for the moment.
Quite simple. It gives me the right results but it take several minutes to get the result.
I have defined partitions and aggregations.
What can I do to improve the performance of this measure?
regards
Tomas