Record.FieldValues

Syntax

Record.FieldValues(record as record) as list

About

Returns a list of the field values in record record.

Example 1

Find the field values in the record.

Usage

Record.FieldValues([CustomerID = 1, Name = "Bob", Phone = "123-4567"])

Output

{1, "Bob", "123-4567"}