Čítať v angličtine

Zdieľať cez


Table.Unpivot

Syntax

Table.Unpivot(table as table, pivotColumns as list, attributeColumn as text, valueColumn as text) as table

O

Preloží množinu stĺpcov v tabuľke na páry atribút-hodnota v kombinácii so zvyškom hodnôt v každom riadku.

Príklad č. 1

Vezmite stĺpce "a", "b" a "c" v ({[ key = "x", a = 1, b = null, c = 3 ], [ key = "y", a = 2, b = 4, c = null ]}) tabuľky a zrušte ich kontingenčnosť na páry atribút-hodnota.

používania

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"
)

výstupu

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]
})