Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. 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
User | Count |
---|---|
18 | |
18 | |
14 | |
13 | |
13 |
User | Count |
---|---|
17 | |
14 | |
14 | |
10 | |
8 |