March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I want to calculate a measure that calculates the top N of a previously created COUNT measure.
In the COUTN measure I have stored the number of times a category appears in my data, and on that COUNT measure I would like to get the top N of the values.
I need this measure in order to filter by dates and be able to see which categories have been the most important according to which period I select.
I have tried RANK and TOPN functions but I can't figure it out.
Thanks!
Solved! Go to Solution.
@Anonymous , While I need some data to check.
But try like
CALCULATE([count],TOPN(3,allselected(Table[category]),[count],DESC),VALUES(Table[category]))
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
@Anonymous , While I need some data to check.
But try like
CALCULATE([count],TOPN(3,allselected(Table[category]),[count],DESC),VALUES(Table[category]))
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Thank you so much for your help, it worked perfectly!
The measure I was using was the following :
Why do we need to use the conditions 'allselected' and 'VALUES(Table[category]' ? Can't understand this very clearly.
regards
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
15 | |
12 | |
9 | |
8 |
User | Count |
---|---|
41 | |
32 | |
29 | |
12 | |
12 |