the formula i gave is incorrect, in a couple of places. Sorry about that.
First of all, in order for INDEX/MATCH to work, you need to list your rankings so 1-5 is listed left to right. That is because that is how the formula works. It looks in the first cell and sees if the value in g3 is lower than 7 and determines that since g3=5.8, it is lower than 7, and proceeds to look at the next cell in the row). when it gets to the cell value of 5, it recognizes that 5.8 is NOT lower than 5, so it stops on that column, and displays the associated value in the ranking row, in this 3. I also changed the round function, as what I gave you was just plain wrong.
Formula:
=INDEX($B$2:$F$2,1,MATCH(G3,B4:F4,1))+(G3-ROUNDDOWN(G3,0))
Bookmarks