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 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ês