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.FromTable(table as table) as record
About
Returns a record from a table of records table
containing field names and value names {[Name = name, Value = value]}
. An exception is thrown if the field names are not unique.
Example 1
Create a record from the table of the form Table.FromRecords({[Name = "CustomerID", Value = 1], [Name = "Name", Value = "Bob"], [Name = "Phone", Value = "123-4567"]}).
Usage
Record.FromTable(
Table.FromRecords({
[Name = "CustomerID", Value = 1],
[Name = "Name", Value = "Bob"],
[Name = "Phone", Value = "123-4567"]
})
)
Output
[CustomerID = 1, Name = "Bob", Phone = "123-4567"]