Table.Unpivot
Wykonuje translację zestawu kolumn w tabeli na pary atrybut-wartość.
Syntax
Table.Unpivot(
table as table,
pivotColumns as list,
attributeColumn as text,
valueColumn as text
) as table
Remarks
Wykonuje translację zestawu kolumn w tabeli na pary atrybut-wartość połączone z resztą wartości w każdym wierszu.
Examples
Example #1
Weź wartości kolumn „a”, „b” i „c” z tabeli <code>({[ key = "x", a = 1, b = null, c = 3 ], [ key = "y", a = 2, b = 4, c = null ]})</code> i anuluj ich przestawienie, tak aby utworzyć pary atrybut-wartość.
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