Record.ToTable
ऐसी तालिका लौटा ता है जिसमें प्रत्येक पंक्ति एक फ़ील्ड नाम और इनपुट रिकॉर्ड का मान होती है.
Syntax
Record.ToTable(
record as record
) as table
Remarks
record
की प्रत्येक फ़ील्ड के लिए एक पंक्ति के साथ Name
और Value
स्तंभों वाली एक तालिका लौटाता है.
Examples
Example #1
रिकॉर्ड से तालिका लौटाएँ.
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