Hi all,
I'm using YTD to get the value from the intial period (month, quarter, day) to the current period. The problem is because there are month that are displaying values when the real values are 0(zero). For example:
Real Values
----------
Jan 500
Feb 0
Mar 0
Apr 0
The YTD values displayed are the following:
YTD
----------
Jan 500
Feb 500
Mar 500
.....
Dec 500
Show the same value for all the months.
And for the last year, if in some case there is one month with 0 (zero) value, i want to display the YTD. For example:
Real Values
----------
Jan 200
Feb 300
Mar 0
Apr 350
So, the YTD should be:
YTD
----
Jan 200
Feb 500
Mar 500
Apr 850
Therefore, i cannot use always ytd() function. How can i solve this problem?
Thanks in advance.