Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I calculated Active Days with the following expression:
Monthend(Max( [TRANS_DATE]))-
Monthstart(Min([TRANS_DATE]))
Now I want to have a running total for active days, see the last column below:
Can somebody explain how to do this?
Kind regards,
Erik
Try this.
sum(TOTAL MonthEnd([TRANS_DATE])-MonthStart([TRANS_DATE]))-Rangesum(Above(TOTAL MonthEnd([TRANS_DATE])-MonthStart([TRANS_DATE]),1,RowNo(TOTAL)),0)