Table.ToColumns
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 nested lists each representing a column of values in the input table.
Table.ToColumns(table as table) as list
| Argument | Description |
|---|---|
| table | The Table to convert. |
let
Source = Table.ToColumns(Table.FromRecords(
{
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"]
}))
in
Source
equals
{
{1, 2},
{"Bob", "Jim"},
{ "123-4567", "987-6543"}
}
Show: