Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I want to do get top5 RegisteredNumbers measure by dates and Nickname in power bi desktop,but I don't know how to do.Hope you guys can help me out, thanks in advance
I want to do as I shown bellow
Solved! Go to Solution.
First Add a Rank Column (Calculated Column) in your Table
RANK =
RANKX (
FILTER ( TableName, TableName[Date] = EARLIER ( TableName[Date] ) ),
TableName[RegisteredNumbers],
,
DESC,
DENSE
)
Now you can use a VISUAL level filter in Power BI or PIvot Table filter in Excel for top 5
First Add a Rank Column (Calculated Column) in your Table
RANK =
RANKX (
FILTER ( TableName, TableName[Date] = EARLIER ( TableName[Date] ) ),
TableName[RegisteredNumbers],
,
DESC,
DENSE
)
Now you can use a VISUAL level filter in Power BI or PIvot Table filter in Excel for top 5
It's work.Thank you very much.
Hi @PeterChu,
Glad to hear that you have resolved your issue. Please mark the right/helpful reply as answer. More people will learn new things here.
Thanks,
Angelia
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 |
|---|---|
| 57 | |
| 43 | |
| 41 | |
| 21 | |
| 17 |