The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi all,
I have the data in the below format -
And I want to convert this data in the below format -
Can someone help with the steps ?
I tried using the 'Split Column' and 'Pivot Column' but not able to get it right.
Thanks in advance
Solved! Go to Solution.
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclTSUUpOLE7VKUjMyUkt0SlPzUzPKAEKGhroGBnoGBoYKMXqRCs5QZUBKSNTsIgzkAlRDNUK1gPSBNQRCwA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t, Column2 = _t, Column3 = _t]),
Columns = Table.ColumnNames(Source),
#"Separated text" = Table.TransformColumns(Source, {{Columns{1}, each Text.Split(_, ",")}, {Columns{2}, each Text.Split(_, ",")}}),
#"Combined columns" = Table.CombineColumns(#"Separated text", List.Skip(Columns), each Record.FromList(_{1}, _{0}), "Combined"),
#"Expanded Combined" = Table.ExpandRecordColumn(#"Combined columns", "Combined", {"case", "pallet", "weight"})
in
#"Expanded Combined"
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclTSUUpOLE7VKUjMyUkt0SlPzUzPKAEKGhroGBnoGBoYKMXqRCs5QZUBKSNTsIgzkAlRDNUK1gPSBNQRCwA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t, Column2 = _t, Column3 = _t]),
Columns = Table.ColumnNames(Source),
#"Separated text" = Table.TransformColumns(Source, {{Columns{1}, each Text.Split(_, ",")}, {Columns{2}, each Text.Split(_, ",")}}),
#"Combined columns" = Table.CombineColumns(#"Separated text", List.Skip(Columns), each Record.FromList(_{1}, _{0}), "Combined"),
#"Expanded Combined" = Table.ExpandRecordColumn(#"Combined columns", "Combined", {"case", "pallet", "weight"})
in
#"Expanded Combined"
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
112 | |
80 | |
73 | |
52 | |
50 |
User | Count |
---|---|
129 | |
123 | |
78 | |
64 | |
60 |