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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
1001
Resolver II
Resolver II

Trying to Write a TopN Measure

Hi All,

I have a caclulated column in my Sales table of Over Odered values. I've then created a table visual with Suppliers in rows and Over Orders as a column. I now wish to just display the Top 5 Over Orders in that table visual. How am I able to achieve this? 

 

Thanks. 

1 ACCEPTED SOLUTION

Hi Jiwan, I ended up cheating a little. As you can see from the image (suppliers blurred), I just sorted the graphic highest to lowest and resized the table to only view first four rows. I just thought a measure may simplyfy me resizing the table.  Many thanks.

Untitled2.jpg 

View solution in original post

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi,

I tried to create a sample pbix file like below.

Please check the below picture and the attached pbix file.

I hope the below can provide some ideas on how to create a solution for your dataset.

 

Untitled.png

 

Top five over ordered: =
CALCULATE (
    [Over ordered measure:],
    KEEPFILTERS (
        TOPN ( 5, ALL ( Sales[Suppliers] ), [Over ordered measure:], DESC )
    )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Hi Jiwan, I ended up cheating a little. As you can see from the image (suppliers blurred), I just sorted the graphic highest to lowest and resized the table to only view first four rows. I just thought a measure may simplyfy me resizing the table.  Many thanks.

Untitled2.jpg 

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

Top Solution Authors