Table.Unpivot
構文
Table.Unpivot(table as table, pivotColumns as list, attributeColumn as text, valueColumn as text) as table
バージョン情報
テーブルの一連の列を属性/値のペアに変換します。その際、各行の残りの値と結合します。
例 1
テーブル ({[ key = "x", a = 1, b = null, c = 3 ], [ key = "y", a = 2, b = 4, c = null ]})
の列 "a"、"b"、および "c" を受け取り、属性/値のペアにピボット解除します。
使用方法
Table.Unpivot(
Table.FromRecords({
[key = "x", a = 1, b = null, c = 3],
[key = "y", a = 2, b = 4, c = null]
}),
{"a", "b", "c"},
"attribute",
"value"
)
出力
Table.FromRecords({
[key = "x", attribute = "a", value = 1],
[key = "x", attribute = "c", value = 3],
[key = "y", attribute = "a", value = 2],
[key = "y", attribute = "b", value = 4]
})