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