Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Syntax
Record.Combine(records as list) as record
About
Combines the records in the given records
. If the records
contains non-record values, an error is returned.
Example 1
Create a combined record from the records.
Usage
Record.Combine({
[CustomerID = 1, Name = "Bob"],
[Phone = "123-4567"]
})
Output
[CustomerID = 1, Name = "Bob", Phone = "123-4567"]