Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi team,
If I was producing a calculation in line one below, that works perfectly when selecting 2017.
Say I wanted to add a second line into the calculation, based on another year how would this work?
This one below, doesn't work for me
=SUM({<Year_YYYY={'$(vMaxYear)'},Period_P=,Period_Start={"<=$(vMaxDate)"}>} if(Year_YYYY='2017' ,Revenue*1.09))
OR
SUM({<Year_YYYY={'$(vMaxYear)'},Period_P=,Period_Start={"<=$(vMaxDate)"}>} if(Year_YYYY='2018' ,Revenue*1.07))
Cheers for your advice
May be try this
=Sum({<Year_YYYY={'$(vMaxYear)'}, Period_P, Period_Start = {"<=$(vMaxDate)"}>}
Revenue *
Pick(Match(Year_YYYY, '2017', '2018') , 1.09, 1.07)
)
May be try this
=Sum({<Year_YYYY={'$(vMaxYear)'}, Period_P, Period_Start = {"<=$(vMaxDate)"}>}
Revenue *
Pick(Match(Year_YYYY, '2017', '2018') , 1.09, 1.07)
)