Forum Discussion
Anonymous
5 years agoNot applicable
Get Top 5 Records in Power BI Table View Including Other Values
I created the below Power BI table and used Top N filter in the filters pane to get top 5 current exposure amount based on the group name. However I got around 7-10 rows as result since one Group...
- 5 years ago
Anonymous , Use this for all the measure in the visual table
Measure =
var _grp = TOPN(10,all(Table[group Name]),[exposure amount],DESC)
return
calculate([exposure amount], filter(Table, Table[group Name] in _grp))
Anonymous
5 years agoNot applicable
amitchandak Your formula is only allowing exposure amount as a measure. However my exposure amount is a column and not a measure.
amitchandak
5 years agoSuper User
Anonymous , Create a measure on column [exposure amount] and use
amount = sum([exposure amount])
use amount