Hello,
We have some order bucket sizes hard coded in our data warehouse, this logic was created long time ago.
I have created a shell dimension(Order Amount) that I want to use in order to define all buckets on one place, and also define some new bucket intervals based on the others.
It works perfect if I just assign one bucket value to the scope statement, but when I define several buckets into one I get the folowing message: "Infinite recursion detected. The loop of dependencies is x -> x"
How can I solve this? I don't want to use "CREATE Member" because we have some drill through actions defined.
scope
([Order Amount].[Order Amount].[Order Amount].&[22], --Order amount 0-10,
[Measures].[Orders Received]) ;
this = aggregate({[Order].[Order Amount].[Order Amount].&[<5], [Order].[Order Amount].[Order Amount].&[5 - 10]})
Thanks in advance
BR.
AL