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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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 @cpjicmon ,
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 @cpjicmon ,
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êsCheck out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!