I'm trying to rank items in columnB by their price in columnA (smallest to largest). I have trouble because it only shows the first item that is 1.1, not the second. Is there a way to fix this?
DATA RESULT FORMULA
1.1 A A =IF($A$2="","",VLOOKUP(SMALL($A$2:$B$6,1),$A$2:$B$6,2,FALSE))
1.2 B A =IF($A$2="","",VLOOKUP(SMALL($A$2:$B$6,2),$A$2:$B$6,2,FALSE))
1.4 C B =IF($A$2="","",VLOOKUP(SMALL($A$2:$B$6,3),$A$2:$B$6,2,FALSE))
1.8 D C =IF($A$2="","",VLOOKUP(SMALL($A$2:$B$6,4),$A$2:$B$6,2,FALSE))
1.1 E D =IF($A$2="","",VLOOKUP(SMALL($A$2:$B$6,5),$A$2:$B$6,2,FALSE))
It shows AABCD instead of AEBCD (or EABCD).
Any help appreciated. Thanks.
DATA RESULT FORMULA
1.1 A A =IF($A$2="","",VLOOKUP(SMALL($A$2:$B$6,1),$A$2:$B$6,2,FALSE))
1.2 B A =IF($A$2="","",VLOOKUP(SMALL($A$2:$B$6,2),$A$2:$B$6,2,FALSE))
1.4 C B =IF($A$2="","",VLOOKUP(SMALL($A$2:$B$6,3),$A$2:$B$6,2,FALSE))
1.8 D C =IF($A$2="","",VLOOKUP(SMALL($A$2:$B$6,4),$A$2:$B$6,2,FALSE))
1.1 E D =IF($A$2="","",VLOOKUP(SMALL($A$2:$B$6,5),$A$2:$B$6,2,FALSE))
It shows AABCD instead of AEBCD (or EABCD).
Any help appreciated. Thanks.