Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
PeterChu
Frequent Visitor

Get Top5 by Dates

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

 

000.png

2 ACCEPTED SOLUTIONS
Zubair_Muhammad
Community Champion
Community Champion

@PeterChu

 

First Add a Rank Column (Calculated Column) in your Table

 

RANK =
RANKX (
    FILTER ( TableName, TableName[Date] = EARLIER ( TableName[Date] ) ),
    TableName[RegisteredNumbers],
    ,
    DESC,
    DENSE
)

 

 

View solution in original post

@PeterChu

 

Now you can use a VISUAL level filter in Power BI or PIvot Table filter in Excel for top 5

 

6006.png

View solution in original post

4 REPLIES 4
Zubair_Muhammad
Community Champion
Community Champion

@PeterChu

 

First Add a Rank Column (Calculated Column) in your Table

 

RANK =
RANKX (
    FILTER ( TableName, TableName[Date] = EARLIER ( TableName[Date] ) ),
    TableName[RegisteredNumbers],
    ,
    DESC,
    DENSE
)

 

 

@PeterChu

 

Now you can use a VISUAL level filter in Power BI or PIvot Table filter in Excel for top 5

 

6006.png

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

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors