A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Empty cells are calculated as zero, that's reason for the result.
Format the data as table and refer the table column as reference.
Andreas.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
=INDEX($U:$U,MATCH(SMALL(AH:AH,$B105),AH:AH,0))
this function was working and returning the correct answer
=INDEX($U:$U,MATCH(LARGE(AH:AH,$B105),AH:AH,0))
however this is returning 0 rather than the correct answer.
U:U is the column i want it to spit out
AH:AH is the column i want it to rank
row B has the list of 1-10 for ranking
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Empty cells are calculated as zero, that's reason for the result.
Format the data as table and refer the table column as reference.
Andreas.
Don't use entire column as reference, it sometimes will cause some unexpected result.
Try formula like this one.
=INDEX($U2:$U20000,MATCH(LARGE(AH2:AH20000,$B105),AH2:AH20000,0))