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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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êsJoin the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.