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

Record.RemoveFields

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

Syntax

Record.RemoveFields(
record as record,
fields as any,
optional missingField as MissingField.Type
) as record

Remarks

एक ऐसा रिकॉर्ड लौटाता है जो इनपुट record से fields में निर्दिष्ट सभी फ़ील्ड निकाल देता है. अगर निर्दिष्ट फ़ील्ड मौजूद नहीं है, तो एक अपवाद दिखाया जाता है.

Examples

Example #1

रिकॉर्ड से फ़ील्ड "मूल्य" निकालें.

Record.RemoveFields([CustomerID = 1, Item = "Fishing rod", Price = 18.00], "Price")

Result:

[CustomerID = 1, Item = "Fishing rod"]

Example #2

रिकॉर्ड से फ़ील्ड "मूल्य" और "आइटम" निकालें.

Record.RemoveFields([CustomerID = 1, Item = "Fishing rod", Price = 18.00], {"Price", "Item"})

Result:

[CustomerID = 1]

Category

Record.Transformations