Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi i need to convert below query into Dax.
SELECT top 50
RANK()OVER (ORDER BY SUM(LINE_AMT_Paid) DESC) AS Ranking
I converted as below into DAX but its not given correct results, i want to display unique rank for Top 5o records.
Ranking = SUM('Fact Claim'[Paid Original Amount])
Ranking1 = RANKX(ALL('Fact Claim'),[Ranking],,DESC)
But it's not displaying data rank wise and showing as sum need to display data like second screen shot.
Solved! Go to Solution.
@Anonymous ,
Please modify the measure like pattern below and check if this issue persists:
Ranking1 =
RANKX (
ALL ( 'Fact Claim' ),
CALCULATE ( SUM ( 'Fact Claim'[Paid Original Amount] ) ),
,
DESC
)
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous ,
Please modify the measure like pattern below and check if this issue persists:
Ranking1 =
RANKX (
ALL ( 'Fact Claim' ),
CALCULATE ( SUM ( 'Fact Claim'[Paid Original Amount] ) ),
,
DESC
)
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
RANKX can be a pain, can you provide sample data?
https://www.sqlbi.com/articles/use-of-rankx-in-power-bi-measures/
How to to convert below sql into DAX show TOP 50 records based Rank wise. Here all columns comes from different tables . Please SELECT top 50 RANK()OVER (ORDER BY SUM(LINE Amount) DESC) AS Ranking,
Fact Table,
Network Licence Number, ( Network Table)
Provider ID (provider Table)
Provider Name (Provider Table)
SUM(LINE Amount) as Paid,(Fact Table)
COUNT(Claim Number) as Services,(Fact Table)
COUNT(DISTINCT(MEM_ID))as Patients-- Fact
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 23 | |
| 23 | |
| 23 | |
| 14 |
| User | Count |
|---|---|
| 46 | |
| 33 | |
| 20 | |
| 18 | |
| 16 |