Hello!
I have a list of names and scores. I'm trying to create a sort of "ranking" board where the top 4 people with the highest scores are printed (in order). Same for the bottom 4.
Sample Data:
Column A Column B
James 10
John 5
Kim 8
Carli 8
David 8
Daniel 9
Eliza 3
The results I'm looking for are:
James
Daniel
Carli
David
The results I'm getting are:
James
Daniel
Carli
Carli
This is the code I'm using
=INDEX('Factor Analysis Summary'!A4:A11,MATCH(LARGE('Factor Analysis Summary'!I4:I11,3),'Factor Analysis Summary'!I4:I11,0))
Where am I going wrong? I've experimented with IF, ROWS.. I don't want to add a helper column since the formatting is important. Any "elegant" fixes?
Thank you!!
Lux
Bookmarks