Record.RenameFields
सूची के नाम(नामों) को { old, new } के रूप में बदलता है.
Syntax
Record.RenameFields(
record as record,
renames as list,
optional missingField as MissingField.Type
) as record
Remarks
इनपुट record
की फ़ील्ड का नाम सूची renames
में निर्दिष्ट फ़ील्ड नामों में बदलने के बाद एक रिकॉर्ड लौटाता है. एकाधिक नाम बदलने के लिए, एक नेस्टेड सूची का उपयोग किया जा सकता है ({ {old1, new1}, {old2, new2} }.
Examples
Example #1
रिकॉर्ड से फ़ील्ड "UnitPrice" का नाम "मूल्य" में बदलें.
Record.RenameFields(
[OrderID = 1, CustomerID = 1, Item = "Fishing rod", UnitPrice = 100.0],
{"UnitPrice", "Price"}
)
Result:
[OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0]
Example #2
रिकॉर्ड से फ़ील्ड "UnitPrice" का नाम "मूल्य" में और "OrderNum" का नाम "OrderID" में बदलें.
Record.RenameFields(
[OrderNum = 1, CustomerID = 1, Item = "Fishing rod", UnitPrice = 100.0],
{
{"UnitPrice", "Price"},
{"OrderNum", "OrderID"}
}
)
Result:
[OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0]
Category
Record.Transformations