Forum Discussion
wesentadesse99
3 years agoFrequent Visitor
TOPN
Dear Team, I want to know the bottom 10 rank of the follwoing data. The requirement is the bottom 10 lowset performer student(%) but for those students have equal point(performance) we need to cons...
- 3 years ago
Hi wesentadesse99 ,
Please follow these steps:
(1) Create a new table
Table 2 = TOPN(10,'Table','Table'[Performance(%)],ASC,'Table'[Bonus],ASC ) Table 3 = TOPN(10,'Table','Table'[Performance(%)],DESC,'Table'[Bonus],ASC)(2)Final output
If neither table is what you need, please state the correct output.
Best Regards,
Gallen Luo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-jialluo-msft
3 years agoCommunity Support
Hi wesentadesse99 ,
Please follow these steps:
(1) Create a new table
Table 2 = TOPN(10,'Table','Table'[Performance(%)],ASC,'Table'[Bonus],ASC )
Table 3 = TOPN(10,'Table','Table'[Performance(%)],DESC,'Table'[Bonus],ASC)
(2)Final output
If neither table is what you need, please state the correct output.
Best Regards,
Gallen Luo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- wesentadesse993 years agoFrequent Visitor
Thanks a lot.