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
Hello,
I have an issue. I need to show:
I want to show all calculation as below:
The first bar: Implemented + Planned
The second bar: High + Medium + Low
This is very important but I have no idea how to do this. Could you help me?
Solved! Go to Solution.
Hi @Anonymous ,
Create a table with the following format:
Add the following measure:
Values for chart = SWITCH(SELECTEDVALUE('Type'[MetricSort]),
1, [Implemented],
2, [Planned],
3, [High],
4, [Medium],
5, [Low])
Setup your char wiht the following setup:
Drill down to the lowest level and sort axis by group category:
If you want to wrap the name you need to use the Stacked column chart:
See file attach.
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @Anonymous ,
Create a table with the following format:
Add the following measure:
Values for chart = SWITCH(SELECTEDVALUE('Type'[MetricSort]),
1, [Implemented],
2, [Planned],
3, [High],
4, [Medium],
5, [Low])
Setup your char wiht the following setup:
Drill down to the lowest level and sort axis by group category:
If you want to wrap the name you need to use the Stacked column chart:
See file attach.
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsCheck out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!