मुख्य कंटेंट तक स्किप करें

Record.Field

किसी रिकॉर्ड में निर्दिष्ट फ़ील्ड का मान लौटाता है.

Syntax

Record.Field(
record as record,
field as text
) as any

Remarks

record में निर्दिष्ट field का मान लौटाता है. अगर फ़ील्ड नहीं मिलता, तो एक अपवाद दिखाया जाता है.

Examples

Example #1

रिकॉर्ड में फ़ील्ड "CustomerID" का मान ढूँढें.

Record.Field([CustomerID = 1, Name = "Bob", Phone = "123-4567"], "CustomerID")

Result:

1

Category

Record.Selection