Table.TransformRows
แปลงแถวของตารางโดยใช้ฟังก์ชันการแปลงที่ระบุ
Syntax
Table.TransformRows(
table as table,
transform as function
) as list
Remarks
สร้างรายการ
โดยนำการดำเนินการ transform
ไปใช้กับแต่ละแถวใน table
Examples
Example #1
แปลงแถวของตารางเป็นรายการตัวเลข
Table.TransformRows(
Table.FromRecords({
[a = 1],
[a = 2],
[a = 3],
[a = 4],
[a = 5]
}),
each [a]
)
Result:
{1, 2, 3, 4, 5}
Example #2
แปลงแถวของตารางตัวเลขเป็นระเบียนข้อความ
Table.TransformRows(
Table.FromRecords({
[a = 1],
[a = 2],
[a = 3],
[a = 4],
[a = 5]
}),
(row) as record => [B = Number.ToText(row[a])]
)
Result:
{
[B = "1"],
[B = "2"],
[B = "3"],
[B = "4"],
[B = "5"]
}
Category
Table.Transformation