Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi folks,
I have the following scenario:
in instead of this (what I want):
As I see it, it might be a piece of cake for you experts.
Thanks in advance.
Rubens
Try this
RangeSum(Before(Sum({<Year>}Value), 0, ColumnNo())) * Avg(1)
Great Sunny,
Another question:
Tks,
Rubens
May be like this
RangeSum(Before(Sum({<Year>}Value), 0, ColumnNo())) * Avg({<Year = {'2016', '2017'}>}1)
or if you still want Year selections to be honored
RangeSum(Before(Sum({<Year>}Value), 0, ColumnNo())) * Avg({<Year *= {'2016', '2017'}>}1)
If you want the 2016 and 2017 to be dynamic
RangeSum(Before(Sum({<Year>}Value), 0, ColumnNo())) * Avg({<Year = {$(=Max(Year)), $(=Max(Year)-1)}>}1)
or
RangeSum(Before(Sum({<Year>}Value), 0, ColumnNo())) * Avg({<Year = {$(=Year(Today())), $(=Year(Today())-1)}>}1)
The problem with this logic is 2015 is still being shown in the chart. Furthermore, I have to freeze how many years I want to consider in the chatt.
I need something like this:
I need a chart like above, but accumulating from the past no selected periods.
Tks mate!
Looks like it is working...
Are you not seeing this?