Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Please find the attached QVW.How can I calculate the % of growth (Inccrase or decrease) of Revenue from Year to year ?
Thanks much.
Try like this:
Sum(Revenue)/Above(Sum(Revenue)) - 1
Slight change in above expression if you want show % growth while selecting single year
Aggr(Sum({1} Revenue)/Above(Sum({1} Revenue)) - 1,Year)
Or this, if you need to avoid Aggr() function
(Sum({1}Revenue)/Above(Sum({1}Revenue)) - 1) * Avg(1)