We have a cumulative measure that is based on the Stream2PositionPostProcessor (from ActivePivot). We use it to sum on the fly our cach flow along a time dimension.
We want to do the sum in chronological order but display the result in reverse order. To display the result in reverse order we changed the levels comparators.
Here is the pivot table we get:
Time dimension | cumulative measure
2012 | 20
2011 | 35
2010 | 65
2009 | 75
Here is what we would like to get:
Time dimension | cumulative measure
2012 | 70
2011 | 55
2010 | 40
2009 | 10
It seems that the Stream2PositionPostProcessor use the level compartors. How can we change this?