The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hey everyone,
I have the folowing data:
a | 100 |
b | 100, 101, 102 |
c | 102,103 |
d | 102 |
And ID's
100 | yellow |
101 | blue |
102 | green |
103 | purple |
Is there a way to merge the colors into the first table, without having to delimit them an joining together after merging each column?
The endresult should look like this:
a | yellow |
b | yellow, blue, green |
c | green, purple |
d | green |
Thanks
Solved! Go to Solution.
That is the way to go but after you merge with the color table, then you can use the group function concatenate the colors the first column.
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Check the attached file.
Or the previous step has the normalized table:
That is the way to go but after you merge with the color table, then you can use the group function concatenate the colors the first column.
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group