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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

Top N Amount (with month columns)

Hello,

 

First, sorry for my english, im from brazil 🙂

 

So, im trying to create a view of a table like this:

jessicaloureiro_0-1642763973728.png

 

 I need to rank by the total, but when i try to do that it shows the rank in each month (Example: top N of january, top N of feb...)

 

 I found this template that helped me to create the view only with the total, but now i dont know how to bring the top N  of the total amount with the months columns:  https://www.dropbox.com/s/59cct4in6zqbxaj/Sales%20Top%20Other.pbix?dl=1

 

Does anyone know how to do that?

 

3 REPLIES 3
v-yalanwu-msft
Community Support
Community Support

Hi, @Anonymous ;

Is your problem solved? If so, Would you mind accept the helpful replies as solutions? Then we could close the thread. More people who have the same requirement will find the solution quickly and benefit here. Thank you.

Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-yalanwu-msft
Community Support
Community Support

Hi, @Anonymous ;

Try to create a measure as follows:

Measure = 
var _rank=
 RANKX(FILTER(ALL(Table1),MONTH([Date])=MONTH(MAX([Date]))), CALCULATE(SUMX(FILTER(ALL(Table1),[country]=MAX([country])&&MONTH([Date])=MONTH(MAX([Date]))),[sales])),,DESC,Dense)
return IF(_rank<=MONTH(MAX([Date])),SUM([sales]))

The final output is shown below:

vyalanwumsft_0-1643089976884.png
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

lbendlin
Super User
Super User

Please provide sanitized sample data that fully covers your issue. Paste the data into a table in your post or use one of the file services. Please show the expected outcome.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.