This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi,
I basically i have two columns:
Linkedin 500
Facebook 400
Twitter 350
Others 370
I want these values to be ranked so that anything that is not "Others" is ranked and presented in a descending order, but Others is presented as last. For example, if i rank the above alphabetically or by value, "Others" would be presented in the middle. This is wrong, it needs to be last. How do i rank everything except "Others"?
Thank you!
Solved! Go to Solution.
Please confirm that you created measures, not calculated columns.
Proud to be a Super User!
Try the following measures:
Total Amount = SUM ( RankTest[Amount] )
Company Rank =
VAR vAllValues =
ALL ( RankTest[Company] )
VAR vValuesToRank =
FILTER ( vAllValues, RankTest[Company] <> "Others" )
VAR vRowCount =
COUNTROWS ( vValuesToRank )
VAR vResult =
RANKX ( vValuesToRank, [Total Amount],, DESC, DENSE )
RETURN
IF ( MAX ( RankTest[Company] ) = "Others", vRowCount + 1, vResult )
Proud to be a Super User!
I'm getting the same Rank (1) for all of these. I think the formula is making SUM for entire "Amount" column which is the same for all values. Am i doing something wrong? In the example, the Total Amount = SUM(RankTest[Amount])=1620 for all values. Therefore the rank is the same for all.
Please confirm that you created measures, not calculated columns.
Proud to be a Super User!
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 23 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 49 | |
| 47 | |
| 41 | |
| 21 | |
| 19 |