Comment on page
Record.ReorderFields
Reorders the field(s) specified into the new order.
function (record
as record,fieldOrder
as list, optionalmissingField
as nullable any) as record
Returns a record after reordering the fields in
record
in the order of fields specified in list fieldOrder
. Field values are maintained and fields not listed in fieldOrder
are left in their original position.Record.Transformations
Reorder some of the fields in the record.
Record.ReorderFields([CustomerID= 1, OrderID = 1, Item = "Fishing rod", Price = 100.0], {"OrderID", "CustomerID"})
[OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0]
Last modified 5yr ago