Essbase BSO outline formula
Summary
Essbase BSO outline formulaContent
Hi,
I'm struggling for a long time with a not too complicated formula in a BSO outline.
First dimension is the Measures dimension.
It contains "overstock" and "depreciation".
For "obsolete stock" a formula is used on product level 0. (dynamic calc)
Product is a sparse dimension with complete hierarchy containing several levels.
The formula which works fine on product level 0 is the following:
IF(@ISLEV(Product,0))
IF ("depreciation" > 0)
"obsolete stock" = "overstock" ;
ELSE
"obsolete stock" = 0 ;
ENDIF
ENDIF
However, for upper levels I don't succeed to find the right one because it does not automatically aggregate level 0. I tried with SUM and SUMRANGE.
0