Record.FieldValues
This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.
Returns a list of field values in order of the record's fields.
Record.FieldValues(record as record) as list
| Argument | Description |
|---|---|
| record | The record to check. |
Record.FieldValues( [CustomerID = 1, Name = "Bob", Phone = "123-4567"] ) equals {1, "Bob", "123-4567"}
Show: