Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
cpjicmon
New Member

Power Bi Chart Sorting

PackageAnalysis.png

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?

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

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:

 

MFelix_1-1709304403166.png

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

1 REPLY 1
MFelix
Super User
Super User

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:

 

MFelix_1-1709304403166.png

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors