Record.FieldNames
Syntax
Record.FieldNames(record as record) as list
About
Returns the names of the fields in the record record
as text.
Example 1
Find the names of the fields in the record.
Usage
Record.FieldNames([OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0])
Output
{"OrderID", "CustomerID", "Item", "Price"}