Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I am try to create a line chart with two lines. One is based on the equation Sum(Values) from Apr 2017 to Dec 2018. While the other is Sum(Value * 0.9) from Apr 2017 to Dec 2017. However, the plot is drawing a line past the last data point (Dec 2017) for the second line (circled in red in the screenshot). I've attached a file illustrating my problem.
Appreciate any help you can provide. 😊
Charles
Hi, if this can help you, I achieve to stop line expansion doing the accumulation on the expression:
if(Date>='01/01/2018', null(), rangesum(Above(sum(if(Date<'01/01/2018',Value,Null())), 0 ,RowNo())))
Hi, if this can help you, I achieve to stop line expansion doing the accumulation on the expression:
if(Date>='01/01/2018', null(), rangesum(Above(sum(if(Date<'01/01/2018',Value,Null())), 0 ,RowNo())))
Thanks Rubenmarin, it works perfectly.
Greatly appreciated!!!
Charles