Could you help me to achieve the following
I have this SQL output table
DateWeek Keep_1 This_1 Order_1 Keep_2 This_2 Order_2 Keep_1-Keep_2 This_1-This_2 Order_1-Order_2 1/1/2013 9 8 7 6 5 4 3 3 3
and turn it into
RowOrder Column_1 Column_2 Column_1-Column_2 Keep 9 6 3 This 8 5 3 Order 7 4 3
As you see I have to keep the order in the rows, so I can not order alphabetically. Also I have to stack the Keep_1 This_1 Order_1
together and Keep_2 This_2 Order_2
also together and operate Column_1
with Column_2
Any ideas how to achieve this?
Thanks