Power Query
published
Search
⌃K

Record.Combine

Record.Combine

Combines the records in the given list.
function (records as list) as record

Description

Combines the records in the given records. If the records contains non-record values, an error is returned.

Category

Record.Transformations

Examples

Create a combined record from the records.
Record.Combine({ [CustomerID =1, Name ="Bob"] , [Phone = "123-4567"]})
[CustomerID=1, Name="Bob", Phone="123-4567"]