Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register 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
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
26 | |
20 | |
19 | |
14 | |
13 |
User | Count |
---|---|
44 | |
36 | |
24 | |
24 | |
22 |