Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
my dax function for reverse rank is:
| Selection | Selected Item | Count of Sessions | Rank | ReverseRank |
| Edge Connect Bottom | 2D Webcam | 1 | 6 | 2 |
| Edge Connect Bottom | New 2D Barcode Scanner | 1 | 6 | 2 |
| Edge Connect Bottom | Small EMV Cradle | 1 | 6 | 2 |
| Edge Connect Bottom | 3D Camera | 2 | 5 | 3 |
| Edge Connect Bottom | MSR | 3 | 4 | 4 |
| Edge Connect Bottom | Fingerprint Scanner | 5 | 3 | 5 |
| Edge Connect Bottom | NFC | 9 | 2 | 6 |
| Edge Connect Bottom | Status Light | 9 | 2 | 6 |
| Edge Connect Bottom | 2D Barcode Scanner | 59 | 1 | 7 |
@wdx223_Daniel ,Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Appreciate your Kudos.
@LinhNguyen ,Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Hi @wdx223_Daniel , @amitchandak
All of these columns come from the same data table so there should not be any empty row created because of relationships with other tables. I have checked the table this data comes from and there's no blank or empty.
The formula I used for Rank is very similar to Daniel's:
@LinhNguyen , I tried on data given I am getting correct Rank. make sure if you are using a formaul(not measure) in rank then use calculate
use the sample data and code as below, i did not catch that error, all result are normal
Rank:=RANKX(ALL(DataBySelections[Selected Item]),CALCULATE(SUM(DataBySelections[Count of Sessions]),ALLEXCEPT(DataBySelections,DataBySelections[Selected Item])),,DESC,Dense)
*****************************
ReverseRank:=RANKX(ALL(DataBySelections[Selected Item]),[Rank],,DESC,Dense)i guess you might got a blank item based on a invalid relationship.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 12 | |
| 10 | |
| 8 |