This content has been marked as final.
Show 4 replies
-
Re: Accumulated Line Chart Appearance
Shashank Vyas Nov 6, 2017 1:58 AM (in response to Shashank Sood)Hello Shashank,
Try the below condition in your set analysis:
MonthYear={'>=$(=YearStart(Max(MonthYear)))<=$(=AddYears(Max(MonthYear),0))'}
It will give you accumulated Line chart
-
Re: Accumulated Line Chart Appearance
Andrea Gigliotti Nov 6, 2017 3:37 AM (in response to Shashank Sood)maybe this:
= rangesum(above(sum(Value), 0, RowNo() ) )
-
Re: Accumulated Line Chart Appearance
Sunny Talwar Nov 6, 2017 7:40 AM (in response to Shashank Sood)May be this
If(Sum(Value) > 0, RangeSum(Above(Sum(Value), 0, NumericCount(Value))))
-
Re: Accumulated Line Chart Appearance
Allu Allu Nov 6, 2017 8:12 AM (in response to Shashank Sood)Dual(If(MonthYear=Max(MonthYear), Country, ''),Sum(value))
**Note :
you should change the fields country ,value according to your need.