Table.Unpivot
Omvandlar en uppsättning kolumner i en tabell till attribut-värde-par.
Syntax
Table.Unpivot(
table as table,
pivotColumns as list,
attributeColumn as text,
valueColumn as text
) as table
Remarks
Omvandlar en uppsättning kolumner i en tabell till attribut-värde-par, som kombineras med resten av värdena på varje rad.
Examples
Example #1
Använd kolumnerna "a", "b" och "c" i tabellen <code>({[ key = "x", a = 1, b = null, c = 3 ], [ key = "y", a = 2, b = 4, c = null ]})</code> och inaktivera pivoteringen av kolumnerna till attribut-värde-par.
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"
)
Result:
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]
})
Category
Table.Column operations