Hi,
I need help in this problem.
For example I have the query below in Web Components
Calendar Price Avg
200505 50
200506 23
200507 45
200508 33
200509 23
200510 56
200511 32
200512 12 30,75 <<--- Calculated Member
Avg = (12 + 32 + 56 + 23) / 4 = 30,75
Calculated Member MDX...
I have a calculated member with the following expression:
iif(Count(Descendants([Cp Date].CurrentMember, [Cp Week]))<>0, [Measures].[Ocp Css] / Count(Descendants([Cp Date].CurrentMember, [Cp Week]),INCLUDEEMPTY),0)
Basicaly this have to make a division between the measure "Ocp Css" with the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.