Record.ToList Function in Power Query

The Record.ToList function returns a list of values containing the field values of the input record.

Syntax

Record.ToList(record as record) as list

Example: Extract the record values in the form of list.

Power Query M

let
  source = [CustomerID = 1, Name = "Ashish", Phone = "123-4567"], 
  Return = Record.ToList(source)
in
  Return

The output of the above code is shown below:

Record.ToList function in Power Query