Hello Guys
What is the best way to transpose rows to columns within a Hana Model. I can find many articles that talk about Column to Row transpose.
Source:
Customer | Dim 1 | Dim 2 |
---|---|---|
1000 | A | 1100 |
1000 | B | 1200 |
1000 | C | 1300 |
Target:
Customer | A | B | C |
---|---|---|---|
1000 | 1100 | 1200 | 1300 |
Thanks