Hello
I was hoping someone could help me with this
I have data like this :
SERVICE ITEM1    ITEM2    ITEM3    ITEM4  
GOLD    0        0        0        0
SILVER  2      2       0        2  
BRONZE  0      4       0        26  
But want it like this:
GOLD  SILVER    BRONZE
2  0        0
2  0        4
0  0        0
2  0        26
I think this is an unpivot, but cant figure out the syntax
many thanks