영어로 읽기

다음을 통해 공유


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