![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hi all, I have (what is an easy calc script in Essbase) a calc in AS which I would like to do the following. If Version = "ACT03" and Month <> "Jan" then "Period Begin Total" = "Period End Total".lag(1) Else If Version = "ACT03" and Month = "Jan" then "Period Begin Total" = "Period End Total" intersecting with "Dec" and "ACT02" End If Basically I am moving a balance from last month to the current month, but taking into account a Version/Scenario dimension. Any ideas/suggestions or examples from Foodmart would be great. Thanks, Mark |
#3
| |||
| |||
|
|
-----Original Message----- Something along those lines: CREATE CELL CALCULATION FOR '(ACT03, [Period Begin Total])' AS ' IIF( Month.CurrentMember IS Month.Jan, ([Period End Total], Month.PrevMember), (ACT02, Month.December, [Period End Total])) ' -- ================================================== Mosha Pasumansky - www.mosha.com/msolap Development Lead in the Analysis Server team All you need is love (John Lennon) Disclaimer : This posting is provided "AS IS" with no warranties, and confers no rights. ================================================== "Mark Frank" <markfrank22 (AT) netscape (DOT) net> wrote in message news:02ac01c34b09$e1025080$a401280a (AT) phx (DOT) gbl... Hi all, I have (what is an easy calc script in Essbase) a calc in AS which I would like to do the following. If Version = "ACT03" and Month <> "Jan" then "Period Begin Total" = "Period End Total".lag(1) Else If Version = "ACT03" and Month = "Jan" then "Period Begin Total" = "Period End Total" intersecting with "Dec" and "ACT02" End If Basically I am moving a balance from last month to the current month, but taking into account a Version/Scenario dimension. Any ideas/suggestions or examples from Foodmart would be great. Thanks, Mark . |
![]() |
| Thread Tools | |
| Display Modes | |
| |