Record.ToList
Returns a list of values containing the field values of the input record.
function (record
as record) as list
Returns a list of values containing the field values from the input
record
.Record.Serialization
Extract the field values from a record.
Record.ToList([A = 1, B = 2, C = 3])
{1, 2, 3}
Last modified 4yr ago