Record.ToTable

Sözdizimi

Record.ToTable(record as record) as table

Hakkında

sütunlarını Name içeren ve Value içindeki recordher alan için bir satır içeren bir tablo döndürür.

Örnek 1

Kayıttan tabloyu döndürür.

Kullanım

Record.ToTable([OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0])

Çıkış

Table.FromRecords({
    [Name = "OrderID", Value = 1],
    [Name = "CustomerID", Value = 1],
    [Name = "Item", Value = "Fishing rod"],
    [Name = "Price", Value = 100]
})