Forum Discussion
littlevillage
Jul 27, 2022Iron Contributor
How can I get top 10 from a table and sorted from highest to lowest.
Hi, I am trying to get top 10 from a table and sorted from highest to lowest. I have written a formula: =SORT(FILTER(FILTER(B5:E125,C5:C125>=LARGE(C5:C125,10),""),{1,1,0,1},""),3,-1) The formula ...
- Jul 27, 2022
You do not need FILTER() twice. You can choose columns from INDEX(). Try-
=INDEX(SORT(FILTER(B5:E125,C5:C125>=LARGE(C5:C125,10)),4,-1),SEQUENCE(10),{1,2,4})
Harun24HR
Jul 27, 2022Bronze Contributor
You do not need FILTER() twice. You can choose columns from INDEX(). Try-
=INDEX(SORT(FILTER(B5:E125,C5:C125>=LARGE(C5:C125,10)),4,-1),SEQUENCE(10),{1,2,4})
littlevillage
Jul 27, 2022Iron Contributor