Forum Discussion

littlevillage's avatar
littlevillage
Iron Contributor
Jul 27, 2022
Solved

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 ...
  • Harun24HR's avatar
    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})

Resources