March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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) |
B | 20 | 2 |
C | 58 | 1 |
D | 5 | 4 |
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
A | 10 | 3 | -1 |
B | 20 | 2 | 0 |
C | 58 | 1 | 1 |
D | 5 | 4 | -2 |
Solved! Go to Solution.
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] )
@Anonymous
See attached file as well
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
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] )
@Anonymous
See attached file as well
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |