नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Syntax
Record.FromList(list as list, fields as any) as record
About
Returns a record given a list of field values and a set of fields. The fields can be specified either by a list of text values, or a record type. An error is thrown if the fields are not unique.
Example 1
Build a record from a list of field values and a list of field names.
Usage
Record.FromList({1, "Bob", "123-4567"}, {"CustomerID", "Name", "Phone"})
Output
[CustomerID = 1, Name = "Bob", Phone = "123-4567"]
Example 2
Build a record from a list of field values and a record type.
Usage
Record.FromList({1, "Bob", "123-4567"}, type [CustomerID = number, Name = text, Phone = number])
Output
[CustomerID = 1, Name = "Bob", Phone = "123-4567"]