Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 494 Bytes

record-fieldnames.md

File metadata and controls

29 lines (19 loc) · 494 Bytes
description title
Learn more about: Record.FieldNames
Record.FieldNames

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"}