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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
BICrazy
Helper II
Helper II

Ranking in Descending Order

Hi,

 

Is there a way to create an index or rank measure for the following graph, where 'Unknown' is always displayed on the extreme right-hand side of the graph, regardless if it has the lowest value or not?

Thanks in AdvanceCapture (3).PNG

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

@BICrazy 

I am assuming your value is from a measure.  In my sample I have another measure that checks the value and returns 0 if it is "Unknown".

Ranking = 
VAR _Value = SELECTEDVALUE ( YourTable[Value] )
RETURN
IF ( _Value = "Unknown",0,[Total Amount])

Then I can add this second measure as a tooltip to the chart which will then let me sort by it.

jdbuchanan71_0-1634962316495.png

 

View solution in original post

2 REPLIES 2
jdbuchanan71
Super User
Super User

@BICrazy 

I am assuming your value is from a measure.  In my sample I have another measure that checks the value and returns 0 if it is "Unknown".

Ranking = 
VAR _Value = SELECTEDVALUE ( YourTable[Value] )
RETURN
IF ( _Value = "Unknown",0,[Total Amount])

Then I can add this second measure as a tooltip to the chart which will then let me sort by it.

jdbuchanan71_0-1634962316495.png

 

@jdbuchanan71  Thank you - this is exactly what I was looking for.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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