Record.Field
Returns the value of the specified field in a record.
function (record
as record,field
as text) as nullable any
Returns the value of the specified
field
in the record
. If the field is not found, an exception is thrown.Record.Selection
Find the value of field "CustomerID" in the record.
Record.Field([CustomerID = 1, Name = "Bob", Phone = "123-4567"], "CustomerID")
1
Last modified 4yr ago