Przejdź do głównej zawartości

Table.Pivot

Używając pary kolumn reprezentujących pary atrybut-wartość, obraca dane w kolumnie atrybutów tak, że stają się one nagłówkami kolumn.

Syntax

Table.Pivot(
table as table,
pivotValues as list,
attributeColumn as text,
valueColumn as text,
optional aggregationFunction as function
) as table

Remarks

Używając pary kolumn reprezentujących pary atrybut-wartość, obraca dane w kolumnie atrybutów tak, że stają się one nagłówkami kolumn.

Examples

Example #1

Weź wartości „a”, „b” i „c” z kolumny atrybutów tabeli <code>({ [ key = "x", attribute = "a", value = 1 ], [ key = "x", attribute = "c", value = 3 ], [ key = "y", attribute = "a", value = 2 ], [ key = "y", attribute = "b", value = 4 ] })</code> i przestaw je do ich własnej kolumny.

Table.Pivot(
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]
}),
{"a", "b", "c"},
"attribute",
"value"
)

Result:

Table.FromRecords({
[key = "x", a = 1, b = null, c = 3],
[key = "y", a = 2, b = 4, c = null]
})

Example #2

Weź wartości „a”, „b” i „c” z kolumny atrybutów tabeli <code>({ [ key = "x", attribute = "a", value = 1 ], [ key = "x", attribute = "c", value = 3 ], [ key = "x", attribute = "c", value = 5 ], [ key = "y", attribute = "a", value = 2 ], [ key = "y", attribute = "b", value = 4 ] })</code> i przestaw je do ich własnej kolumny. Z atrybutem „c” klucza „x” jest skojarzonych wiele wartości, więc użyj funkcji List.Max w celu rozwiązania konfliktu.

Table.Pivot(
Table.FromRecords({
[key = "x", attribute = "a", value = 1],
[key = "x", attribute = "c", value = 3],
[key = "x", attribute = "c", value = 5],
[key = "y", attribute = "a", value = 2],
[key = "y", attribute = "b", value = 4]
}),
{"a", "b", "c"},
"attribute",
"value",
List.Max
)

Result:

Table.FromRecords({
[key = "x", a = 1, b = null, c = 5],
[key = "y", a = 2, b = 4, c = null]
})

Category

Table.Column operations