Table.FromValue
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 table with a column containing the provided value or list of values.
Table.FromValue (value as any) as table
| Argument | Description |
|---|---|
| Value | The value to convert. |
Table.FromValue({1, "Bob", "123-4567"}) equals
| Value |
|---|
| 1 |
| Bob |
| 132-4567 |
Show: