开发者

Convert table rows to column

开发者 https://www.devze.com 2023-02-02 08:11 出处:网络
I have data like this: ColumnName row1 row2 row3 ... ... I want the result like this row1        row2    row3  &n

I have data like this:

ColumnName

row1

row2

row3

...

...

I want the result like this

row1        row2     row3     ...     ...

true        false     true     ...     ...

false        false     true     ...    开发者_运维问答 ...

Is this possible with PIVOT table? I have tried but unable to find any solution.

Thanks.


You should be able to use pivot. check out the link for a full explanation: http://msdn.microsoft.com/en-us/library/ms177410.aspx


Did you try Copy > Paste Special > Transpose option?


Or try following :

=TRANSPOSE(A1:A3) in destination cell.

0

精彩评论

暂无评论...
验证码 换一张
取 消