Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Community,
After playing with Power Query, I can officially say that I'm stuck.
I have source data as shown below.
the requirement is to denormalize the above data to be denormalized as shown below
Appreciated for the Help,Thank You.
Solved! Go to Solution.
Hi @naga449 ,
So you can do it something like shown in steps below.
Consider the data as follows:
Then I created a custom column in Power Query editor, to get the split of both Rank and Grade columns in a single step as a Table:
Formula for custom columns:
Table.FromColumns(
{
Text.Split([Rank], "|"),
Text.Split([Grade], "|")
},
{"Rank", "Grad"}
)
Once this is created a column is created which can be expanded to extract the final split on columns:
Click on the Expand icon as highlighted in above picture and you see the columns:
Once you expand them you get the resultant columns:
You can simple rename the new columns and delete the previous ones and you get the desired results:
Hope the solution helps.
Hi @naga449 ,
So you can do it something like shown in steps below.
Consider the data as follows:
Then I created a custom column in Power Query editor, to get the split of both Rank and Grade columns in a single step as a Table:
Formula for custom columns:
Table.FromColumns(
{
Text.Split([Rank], "|"),
Text.Split([Grade], "|")
},
{"Rank", "Grad"}
)
Once this is created a column is created which can be expanded to extract the final split on columns:
Click on the Expand icon as highlighted in above picture and you see the columns:
Once you expand them you get the resultant columns:
You can simple rename the new columns and delete the previous ones and you get the desired results:
Hope the solution helps.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
70 | |
70 | |
38 | |
28 | |
26 |
User | Count |
---|---|
97 | |
88 | |
59 | |
43 | |
40 |