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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors