Finally, we’ve solved problem stated in communities. And Robert allowed me to publish resulting library here as well. See attached zip file.
We have 2 cubes, one containing product groups sales (for example) and the other containing detailed product data. Users should be able to correct overall group totals and correct detailed product distribution.
If group A contains Product 1 and Product 2 and if Total(A) is 100, it’s initially split 50\50.
User should be able to modify Product 1 to 75, yielding result of 75\25. Normal break back won’t work this way, because it’ll see 75\50 as profile for break back and will produce 60\40 as a result.
So you’d need to create an own break back. That’s easy )
It’s a copy-paste from communities topic, don’t bother re-reading.
Total 100
A 70
B 30
I want A to become 800
x = 100 - 800 = -700
Total 70
A 0
B 70
Total -700
A 0
B -700
Total 100
A 800
B -700
A working Analyst library is attached so I just want to highlight some details:
Thanks Robert, it was an interesting task.