Table.Unpivot

 

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.

Given a list of table columns, transforms those columns into attribute-value pairs.

Table.Unpivot(table as table, pivotColumns as list, attributeColumn as text, valueColumn as text) as table  

ArgumentDescription
tableThe Table to modify.
pivotColumnsThe columns to transform.
attributeColumnThe column to make the attribute.
valueColumnThe column to make the value.
  • The transformation is patterned after the SQL UNPIVOT operator.
Table.Unpivot(Table.FromRecords({  
  
    [ key = "key1", attribute1 = 1, attribute2 = null, attribute3 = 3 ]}),  
  
    { "attribute1", "attribute2", "attribute3" }, "attribute", "value")  

keyattributevalue
key1attribute11
key1attribute33
Show: