Record.Combine
Combines the records in the given list.
Syntax
Record.Combine(
records as list
) as record
Remarks
Combines the records in the given records
. If the records
contains non-record values, an error is returned.
Examples
Example #1
Create a combined record from the records.
Record.Combine({
[CustomerID = 1, Name = "Bob"],
[Phone = "123-4567"]
})
Result:
[CustomerID = 1, Name = "Bob", Phone = "123-4567"]
Category
Record.Transformations