Forum Discussion

hidegandras's avatar
hidegandras
Copper Contributor
Jul 28, 2023

Sorting a list in Excel 2019

I have a list of names and a score for each person. I need to sort this list in descending order, name of the highest score on the top, lowest on the bottom.

 

SORT function is not available in Excel 2019, so I need to find a workaround.

 

I managed to sort the values using the LARGE function, however, as there are two similar values, using VLOOKUP gives the same name for the two 92% scores. The name list should look: Emily, John, Mia, James, Jessica, Mark and Richard.

 

Function in E3: =LARGE($A$2:$A$9;ROW(A1))

Function in F3: =VLOOKUP(LARGE($A$2:$A$9;1);$A$3:$D$9;3;FALSE)

 

I also can't use VBA, so I need some sort of function combination that is available in Excel 2019.

 

Resources