Record.ToTable
Restituisce una tabella in cui ogni riga contiene il valore e il nome di un campo del record di input.
Syntax
Record.ToTable(
record as record
) as table
Remarks
Restituisce una tabella contenente le colonne Name
e Value
con una riga per ogni campo in record
.
Examples
Example #1
Restituire la tabella dal record.
Record.ToTable([OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0])
Result:
Table.FromRecords({
[Name = "OrderID", Value = 1],
[Name = "CustomerID", Value = 1],
[Name = "Item", Value = "Fishing rod"],
[Name = "Price", Value = 100]
})
Category
Record.Serialization