Skip to main content

Table.Unpivot

แปลค่าชุดคอลัมน์ในตารางให้เป็นคู่ของแอตทริบิวต์-ค่า

Syntax

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

Remarks

แปลค่าชุดคอลัมน์ในตารางให้เป็นคู่ของแอตทริบิวต์-ค่า โดยรวมกับค่าที่เหลือในแต่ละแถว

Examples

Example #1

ใช้คอลัมน์ "a", "b" และ "c" ในตาราง <code>({[ key = "x", a = 1, b = null, c = 3 ], [ key = "y", a = 2, b = 4, c = null ]})</code> และยกเลิกการทำ ควบคุมการแสดงผลอย่างสั้น ลงในคู่ของแอตทริบิวต์-ค่า

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