I have an Excel spreadsheet that looks like this:
Cost Centre | Jan | Feb | Mar | Apr |
---|---|---|---|---|
CC0001 | 1 | 2 | 3 | 4 |
CC0002 | 5 | 6 | 7 | 8 |
CC0003 | 9 | 10 | 11 | 12 |
After I read it into BODS, can I transform it so that it looks like this?
Cost Centre | Month | Value |
---|---|---|
CC0001 | Jan | 1 |
CC0001 | Feb | 2 |
CC0001 | Mar | 3 |
CC0001 | Apr | 4 |
CC0002 | Jan | 5 |
CC0002 | Feb | 6 |
CC0002 | Mar | 7 |
CC0002 | Apr | 8 |
CC0003 | Jan | 9 |
CC0003 | Feb | 10 |
CC0003 | Mar | 11 |
CC0003 | Apr | 12 |
Sometimes this transformation is called "transpose", sometimes it's called "melt", if that helps.
Thanks
Steve