Table.Transpose
Table.Transpose(table as table, optional columns as any) as table
使列成为行,并使行成为列。
示例:
使名称-值对的表行成为列。
使用情况:
Table.Transpose(Table.FromRecords({[Name = "Full Name", Value = "Fred"], [Name = "Age", Value = 42], [Name = "Country", Value = "UK"]}))
输出:
Table.FromRecords({ [
Column1 = "Full Name",
Column2 = "Age",
Column3 = "Country"
], [
Column1 = "Fred",
Column2 = 42,
Column3 = "UK"
]
}, {
"Column1",
"Column2",
"Column3"
})