Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello All,
I have the following table. My current key is a combination of ID & Type. For each type, I have to get 7 columns with the following schema (type + each following column) :
.....
In this example, I want to end up with 8*6 columns (coal, oil, tobacco, other_fossil_fuel,cannabis,gas,unconventionnal_weapon,PORNOGRAPHY_ADULT_ENTERTAINMENT_SERVICES)*(value chain, threshold type, threshold value, absolute, relative, new) and two line, one for each ID (1000 and 1002).
ID | Type | Value chain | threshold type | threshold value | absolute | relative | new |
1000 | COAL | U;P;D | R | 0.2 | 10 | 0.2 | Y |
1000 | OIL | U;P | C | null | null | null | Y |
1000 | TOBACCO | U;P;D | R | 0.3 | null | null | null |
1000 | OTHER_FOSSIL_FUEL | U;P | C | null | null | null | Y |
1000 | CANNABIS | P | R | 0.3 | null | null | null |
1000 | GAS | U;P | C | null | null | null | Y |
1000 | UNCONVENTIONAL_WEAPONS | U;P;D | R | 0 | null | null | null |
1002 | UNCONVENTIONAL_WEAPONS | U;P;D | R | 0 | null | null | null |
1002 | PORNOGRAPHY_ADULT_ENTERTAINMENT_SERVICES | U;P;D | R | 0.05 | null | null | null |
1002 | TOBACCO | U;P;D | R | 0.3 | null | null | null |
1002 | CANNABIS | P | R | 0.3 | null | null | null |
1002 | COAL | U;P;D | R | 0.2 | 10 | 0.2 | Y |
1002 | GAS | U;P | C | null | null | null | Y |
1002 | OTHER_FOSSIL_FUEL | U;P | C | null | null | null | Y |
1002 | OIL | U;P | C | null | null | null | Y |
I have tried to pivot columns... but I can't figure out how to deal with this. I am able to create the required columns but I can't find a way to group by ID so that I only get one row with the correct data.
Any idea on this?
Thanks,
Aryagon
Solved! Go to Solution.
Hi @Anonymous ,
Here are the steps you can follow:
1. In power query – select [schema] – Spliy Column – By Delimiter.
Split at : Left – most delimiter.
2. Select [schema.2] – Transform – Pivot Column.
Values Column – [Flag]
Aggreate Value Function – Don’t Aggregate
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Anonymous ,
Here are the steps you can follow:
1. In power query – select [schema] – Spliy Column – By Delimiter.
Split at : Left – most delimiter.
2. Select [schema.2] – Transform – Pivot Column.
Values Column – [Flag]
Aggreate Value Function – Don’t Aggregate
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
@Anonymous , You can create a new column with group values
example
Sumx(filter(table, Table[ID] = earlier(Table[ID])) , Table[threshold value] )
Power BI DAX- Earlier, I should have known Earlier: https://youtu.be/CVW6YwvHHi8
Thanks ! What about diplaying the correct Value chain, as sumx does not handle string values?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
70 | |
57 | |
37 | |
36 |
User | Count |
---|---|
85 | |
65 | |
60 | |
46 | |
45 |