Please move to an appropriate forum if it doesn't belong here.
I've a data feed that represents some multidimensional data in star schema. e.g. /Products /SalesYear /SalesContact /Region /Salesdata
Now I want to render this data in a simple tabular view
example
2005 2006 2007 Product1 Category1 27m$ 30m$ 35m$ Category2 9m$ 1m$ 11m$ Product2 Category1 27m$ 30m$ 35m$ Category2 9m$ 1m$ 11m$
Are there any standard algorithm or techniques that can be used to display this kind of data?
[EDIT]
What I need essentially is an efficient method to build an in-memory cube like powerpivot does but at a smaller scale.