Skip to main content

Record.Combine

รวมระเบียนในรายการที่กำหนด

Syntax

Record.Combine(
records as list
) as record

Remarks

รวมระเบียนใน records ที่กำหนด ถ้า records มีค่าที่ไม่ใช่ระเบียน ระบบจะส่งกลับข้อผิดพลาด

Examples

Example #1

สร้างระเบียนรวมจากระเบียน

Record.Combine({
[CustomerID = 1, Name = "Bob"],
[Phone = "123-4567"]
})

Result:

[CustomerID = 1, Name = "Bob", Phone = "123-4567"]

Category

Record.Transformations