Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Have data that looks like this:
Year | 2016 | 2016 | |
QTR | 1 | 2 | |
PG | PGName | Sales | Sales |
1 | A | 100 | 300 |
2 | B | 200 | 400 |
3 | C | 300 | 500 |
Want the data to look like this:
PG | PGName | Year | QTR | Sales |
1 | A | 2016 | 1 | 100 |
1 | A | 2016 | 2 | 300 |
2 | B | 2016 | 1 | 200 |
2 | B | 2016 | 2 | 400 |
3 | C | 2016 | 1 | 300 |
3 | C | 2016 | 2 | 500 |
Solved! Go to Solution.
I attached the pbix file below since this was done in power query and you would probably want to be able to step through it. But quick overview:
Final Result:
M-Code:
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WUtJRMjIwNENQSrE60UqRqYlFIDYEgUSAdGBIEJA0BCmFCSEpCHAHsgLc/RJzU4GM4MSc1GI4DZIH6XME6TcwAJLGQBIkagRkO4EtB4maQEWNgWxnqCodJVOQaCwA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Column1 = _t, Column2 = _t, Column3 = _t, Column4 = _t]),
#"Removed Top Rows" = Table.Skip(Source,4),
#"Promoted Headers" = Table.PromoteHeaders(#"Removed Top Rows", [PromoteAllScalars=true]),
#"Unpivoted Other Columns" = Table.UnpivotOtherColumns(#"Promoted Headers", {"PG", "PGName"}, "Attribute", "Value"),
#"Grouped Rows" = Table.Group(#"Unpivoted Other Columns", {"PG", "PGName"}, {{"Data", each _, type table [PG=text, PGName=text, Attribute=text, Value=text]}}),
#"Added Custom" = Table.AddColumn(#"Grouped Rows", "Custom", each Table.AddIndexColumn(
[Data],"Index",1,1)),
#"Added Custom1" = Table.AddColumn(#"Added Custom", "Custom.1", each Table.NestedJoin(
[Custom], {"Index"},
Year, {"Index"}, "Year",JoinKind.LeftOuter)),
#"Added Custom2" = Table.AddColumn(#"Added Custom1", "Custom.2", each Table.NestedJoin(
[Custom.1], {"Index"},
Qtr, {"Index"}, "Qtr",JoinKind.LeftOuter)),
#"Removed Other Columns" = Table.SelectColumns(#"Added Custom2",{"Custom.2"}),
#"Expanded Custom.2" = Table.ExpandTableColumn(#"Removed Other Columns", "Custom.2", {"PG", "PGName", "Value", "Year", "Qtr"}, {"PG", "PGName", "Value", "Year", "Qtr"}),
#"Expanded Year" = Table.ExpandTableColumn(#"Expanded Custom.2", "Year", {"Year"}, {"Year"}),
#"Expanded Qtr" = Table.ExpandTableColumn(#"Expanded Year", "Qtr", {"QTR"}, {"QTR"}),
#"Reordered Columns" = Table.ReorderColumns(#"Expanded Qtr",{"PG", "PGName", "Year", "QTR", "Value"}),
#"Changed Type" = Table.TransformColumnTypes(#"Reordered Columns",{{"PG", Int64.Type}, {"PGName", type text}, {"Year", Int64.Type}, {"QTR", Int64.Type}, {"Value", Currency.Type}}),
#"Renamed Columns" = Table.RenameColumns(#"Changed Type",{{"Value", "Sales"}})
in
#"Renamed Columns"Pbix file:
I attached the pbix file below since this was done in power query and you would probably want to be able to step through it. But quick overview:
Final Result:
M-Code:
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WUtJRMjIwNENQSrE60UqRqYlFIDYEgUSAdGBIEJA0BCmFCSEpCHAHsgLc/RJzU4GM4MSc1GI4DZIH6XME6TcwAJLGQBIkagRkO4EtB4maQEWNgWxnqCodJVOQaCwA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Column1 = _t, Column2 = _t, Column3 = _t, Column4 = _t]),
#"Removed Top Rows" = Table.Skip(Source,4),
#"Promoted Headers" = Table.PromoteHeaders(#"Removed Top Rows", [PromoteAllScalars=true]),
#"Unpivoted Other Columns" = Table.UnpivotOtherColumns(#"Promoted Headers", {"PG", "PGName"}, "Attribute", "Value"),
#"Grouped Rows" = Table.Group(#"Unpivoted Other Columns", {"PG", "PGName"}, {{"Data", each _, type table [PG=text, PGName=text, Attribute=text, Value=text]}}),
#"Added Custom" = Table.AddColumn(#"Grouped Rows", "Custom", each Table.AddIndexColumn(
[Data],"Index",1,1)),
#"Added Custom1" = Table.AddColumn(#"Added Custom", "Custom.1", each Table.NestedJoin(
[Custom], {"Index"},
Year, {"Index"}, "Year",JoinKind.LeftOuter)),
#"Added Custom2" = Table.AddColumn(#"Added Custom1", "Custom.2", each Table.NestedJoin(
[Custom.1], {"Index"},
Qtr, {"Index"}, "Qtr",JoinKind.LeftOuter)),
#"Removed Other Columns" = Table.SelectColumns(#"Added Custom2",{"Custom.2"}),
#"Expanded Custom.2" = Table.ExpandTableColumn(#"Removed Other Columns", "Custom.2", {"PG", "PGName", "Value", "Year", "Qtr"}, {"PG", "PGName", "Value", "Year", "Qtr"}),
#"Expanded Year" = Table.ExpandTableColumn(#"Expanded Custom.2", "Year", {"Year"}, {"Year"}),
#"Expanded Qtr" = Table.ExpandTableColumn(#"Expanded Year", "Qtr", {"QTR"}, {"QTR"}),
#"Reordered Columns" = Table.ReorderColumns(#"Expanded Qtr",{"PG", "PGName", "Year", "QTR", "Value"}),
#"Changed Type" = Table.TransformColumnTypes(#"Reordered Columns",{{"PG", Int64.Type}, {"PGName", type text}, {"Year", Int64.Type}, {"QTR", Int64.Type}, {"Value", Currency.Type}}),
#"Renamed Columns" = Table.RenameColumns(#"Changed Type",{{"Value", "Sales"}})
in
#"Renamed Columns"Pbix file:
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 38 | |
| 38 | |
| 28 | |
| 24 |
| User | Count |
|---|---|
| 122 | |
| 92 | |
| 70 | |
| 68 | |
| 66 |