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.
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
User | Count |
---|---|
80 | |
78 | |
37 | |
34 | |
31 |
User | Count |
---|---|
93 | |
81 | |
60 | |
49 | |
49 |