Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to bring the sum of the previous selection?
If I select two months, should return two months prior to selection.
example:
12/2011 and 11/2011
returns 10/2011 and 09/2011.
You can use a set expression to set DATA to the time period you want.
=SUM({<DATA = {">=$(=Date(addmonths(min(DATA),-2),'MM/YYYY'))<=$(=Date(addmonths(max( DATA),-2),'MM/YYYY'))"}>} VALOR)
Please see attached.