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
Anonymous
Not applicable

Rank Relative to a Chosen Value's Rank

Data: I have 1 table with a column, and sales for that column. I have ranked them based on sales. 

This table has a slicer on ItemSalesRegion (i.e. A,B,C,D)

 

ItemSalesRank

A(Region)10(Sales)3(Rank)
B202
C581
D54

 

Requirement: Based on the value chosen in slicer I want to find relative rank of every item in Column 1. For example if I chose B, I want the following output. I also want the whole data set to show and the slicer not filter to B(chosen Filter). 

 

ItemSalesRankRelative To Chosen B

A103-1
B2020
C5811
D54-2

 

 

2 ACCEPTED SOLUTIONS
Zubair_Muhammad
Community Champion
Community Champion

Hi @Anonymous

 

I believe you will need a supporting Table to achieve this

 

If RANK is a calculated column, then you can create a calculated table from the modelling tab

 

Items =
ALL ( Table1[Item], Table1[RANK] )

And use it as a slicer.

 

Then use following MEASURE

 

Relative RANK =
VAR myrank =
    SELECTEDVALUE ( Items[RANK] )
RETURN
    myrank - SELECTEDVALUE ( Table1[RANK] )

Regards
Zubair

Please try my custom visuals

View solution in original post

@Anonymous

 

See attached file as well

 

relativerank.png


Regards
Zubair

Please try my custom visuals

View solution in original post

3 REPLIES 3
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Anonymous,

 

Have you solved your problem?

 

If you have solved, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.

 

If you still need help, please feel free to ask.

 

Best Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Zubair_Muhammad
Community Champion
Community Champion

Hi @Anonymous

 

I believe you will need a supporting Table to achieve this

 

If RANK is a calculated column, then you can create a calculated table from the modelling tab

 

Items =
ALL ( Table1[Item], Table1[RANK] )

And use it as a slicer.

 

Then use following MEASURE

 

Relative RANK =
VAR myrank =
    SELECTEDVALUE ( Items[RANK] )
RETURN
    myrank - SELECTEDVALUE ( Table1[RANK] )

Regards
Zubair

Please try my custom visuals

@Anonymous

 

See attached file as well

 

relativerank.png


Regards
Zubair

Please try my custom visuals

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.