Record.ToTable
Record.ToTable(record as record) as table
Egy olyan táblát ad vissza, amely tartalmazza az oszlopokat Name
és Value
a sorokat az egyes mezőkben record
.
Adja vissza a táblát a rekordból.
Használat
Record.ToTable([OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0])
Hozam
Table.FromRecords({
[Name = "OrderID", Value = 1],
[Name = "CustomerID", Value = 1],
[Name = "Item", Value = "Fishing rod"],
[Name = "Price", Value = 100]
})