Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
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 Advance
Solved! Go to Solution.
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.
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.
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
112 | |
112 | |
105 | |
94 | |
58 |
User | Count |
---|---|
174 | |
147 | |
136 | |
102 | |
82 |