逆透视数据但保持顺序不变

问题描述 投票:0回答:1

所以它压平了我的数据,但改变了顺序。如何防止它更改标题的顺序。换句话说,我希望先列出该列中的每个数字,然后再转到下一列。

取消旋转之前: enter image description here

取消旋转后:
enter image description here

将单元格更改为“文本”不起作用

excel pivot-table
1个回答
0
投票

这是使用

POWER QUERY
时执行此操作的一种方法:

enter image description here


let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    DemotedHeaders = Table.DemoteHeaders(Source),
    Transpose = Table.Transpose(DemotedHeaders),
    UnpivotOtherCols = Table.UnpivotOtherColumns(Transpose, {"Column1"}, "Attribute", "Value"),
    RemovedCols= Table.RemoveColumns(UnpivotOtherCols,{"Attribute"})
in
    RemovedCols

© www.soinside.com 2019 - 2024. All rights reserved.