Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
I have created a stacked bar chart that shows the number and status of projects for each executive. Currently it is sorting the status color alphabetically and I need it to sort in Red - Amber - Green order. How can I do that?
Status Color = SWITCH(
[Overall Status],
10, "Green",
20, "Amber",
30, "Red",
"Unknown"
)
Solved! Go to Solution.
Hi @Jhadur ,
Please try to create a calculated column with number (0-3).
Status Color = SWITCH(
[Overall Status],
10, 3,
20, 2,
30, 1,
0
)
Best Regards,
Wearsky
Hi @Jhadur ,
Please try to create a calculated column with number (0-3).
Status Color = SWITCH(
[Overall Status],
10, 3,
20, 2,
30, 1,
0
)
Best Regards,
Wearsky
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
69 | |
66 | |
51 | |
32 |
User | Count |
---|---|
114 | |
99 | |
75 | |
65 | |
40 |