Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I tried to calculate a so called "Evolution Index".
For this I have:
I tried something like this:
sum({<FiscalYear={2016}>}SALES) - sum({<FiscalYear={2016}, FiscalMonth={'April'}>}SALES)
But now it is just calculating for fsical month April.
How can I do a expression independet from a dimension?
Thank you for your help.
Kind regards
Philipp
Hi,
Try this
sum({<FiscalYear={2016}>}SALES) - sum({1<FiscalYear={2016}, FiscalMonth={'April'}>}SALES)
Regards
Try this:
Sum({<FiscalYear={2016}>}SALES) - Sum(TOTAL {<FiscalYear={2016}, FiscalMonth={'April'}>}SALES)
or if you have more than one dimension, you might need this:
Sum({<FiscalYear={2016}>}SALES) - Sum(TOTAL <DimensionName> {<FiscalYear={2016}, FiscalMonth={'April'}>}SALES)
Hi Philipp,
Try this:
sum({<FiscalYear={2016}>}SALES) - sum( TOTAL <FiscalYear>{<FiscalYear={2016}, FiscalMonth={'April'}>}SALES)
EDIT: Sunny's right, my <FiscalYear> clause is not required.
cheers
Andrew