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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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ês