Power Query
published
Search
K
Comment on page

Record.FromTable

Record.FromTable

Creates a record from a table of the form {[Name = name, Value = value]}.
function (table as table) as record

Description

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.

Category

Record.Serialization

Examples

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"]