Hi,
I am trying to add a monthly percentage change to my Bar/Line Chart.
I tried to apply the steps explained in this post but couldn't manage to adapt it to my chart: https://support.klipfolio.com/hc/en-us/community/posts/360029668653-Calculate-monthly-increments-in-Bar-Line-Chart
My chart shows the total durations grouped by month. I am trying to add a monthly percentage change of duration to this:
Using the data below:
X Axis: @month
Y Series: @duration/60
I added a new series and wrote the below formula but this doesn't work:
(&Series: Duration-ARRAY(SUMIF(DATE_IN(DATE(@month,"MMM yyyy"),"3",-4)),SLICE(&Series: Duration,0,-1))) / ARRAY(SUMIF(DATE_IN(DATE(@month,"MMM yyyy"),"3",-4)),SLICE(&Series: Duration,0,-1))*100
How should I write the formula?
Thanks,