RE: New calculated membre invisible -
12-15-2004
, 06:02 AM
Hello,
I solved my problem. I will take a few minutes to explain what it
happened.
Lets suppose a cube with three members. (totaly invented for the explanation but
it is important to notice the syntax of m3)
m1, m2 and m3.
m1 = (Time.currentmember, measures.sales)
m2 = (Time.currentmember.prevmember, measures.sales)
m3= m1-m2
Everythin is right.
I process the cube, and close Analysis Services.
Later, I open Analysis Services and add another calculated member,
m4 = (Time.currentmember.lag(2), measures.sales)
The syntax of m4 is right and I process the cube wihtout errors.
Now I want use m4 in m3 like this :
m3 = m1 - m4
Here the error occur. It says m4 does not exist.
Nothing to do. If I want to use a calculated member called m3
which has this following syntax : m1 - m4 I must delete the older
calculated member called m3 and recreate another one.
And it woks.
Thanks |