Comment on page
Record.FromTable
Creates a record from a table of the form {[Name = name, Value = value]}.
function (table
as table) as record
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.Record.Serialization
Create a record from the table of the form Table.FromRecords({[Name = "CustomerID", Value = 1], [Name = "Name", Value = "Bob"], [Name = "Phone", Value = "123-4567"]}).
Record.FromTable(Table.FromRecords({[Name = "CustomerID", Value = 1], [Name = "Name", Value = "Bob"], [Name = "Phone", Value = "123-4567"]}))
[CustomerID = 1, Name = "Bob", Phone = "123-4567"]
Last modified 5yr ago