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