Here is my problem.
I have a matrix with i number of row groups but just one column group, Year.
For each row and column group I have two values, Avg(Temperature) and Count(Temperature).
My problem is that I want my matrix to look like this.
AVG Temperature Count of Temp
2012 2011 2010 2012 2011 2010
Region District Depth
XXX XXX XXXXX 17,7 16,9 17,2
20 4 12
So what I basically want to do is group the column groups in the matrix by the "type of value" (Avg or Count) first and Year as a second group.
So how can I do this?
Thanks!
Kristina