I have a requirement to transpose the column into header.
The Data values is
Column A Column B
-------- --------
AA B
AA C
AD D
The out put should look like this
AA AD
-- --
B
C
D
I tried with pivot but I'm not able to do it without aggregation.
Could someone help me out with this