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! It's time to submit your entry. Live now!
I have an issue with my chart shown. I want to sort the chart by 2 levels, 1. The "CalendarWeek" alfabeticaly on the X axis, and then by the Value "Count by Defect" on the Y axis. How can I do that?
Solved! Go to Solution.
HI @Anonymous ,
To do this you need to have a workaround.
Create the following measure:
Sorting Measure =
var weekID = 1000 - RIGHT(SELECTEDVALUE('Table'[CalendarWeek]), 2) *100
Return
weekID + COUNT('Table'[Defect])
Now add this measure on your tooltips and you can sort by it:
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHI @Anonymous ,
To do this you need to have a workaround.
Create the following measure:
Sorting Measure =
var weekID = 1000 - RIGHT(SELECTEDVALUE('Table'[CalendarWeek]), 2) *100
Return
weekID + COUNT('Table'[Defect])
Now add this measure on your tooltips and you can sort by it:
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Português| User | Count |
|---|---|
| 56 | |
| 41 | |
| 38 | |
| 21 | |
| 21 |
| User | Count |
|---|---|
| 140 | |
| 102 | |
| 64 | |
| 36 | |
| 35 |