Table.Transpose
구문론
Table.Transpose(table as table, optional columns as any) as table
소개
열을 행으로, 행을 열로 만듭니다.
예제 1
이름-값 쌍 테이블의 행을 열로 전환합니다.
사용량
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"]
})