I have a sheet to record results from Grand Prix races. I use the LARGE
function to sort out the points won, to list the top three point scorers.
- B24:
=LARGE(C21:X21,1)
- B25:
=LARGE(C21:X21,2)
- B26:
=LARGE(C21:X21,3)
This shows the correct results.
I then use the lookup function to show the name of the driver associated to these scores.
- C24:
=LOOKUP(B24,C21:X21,C1:X1)
- C25:
=LOOKUP(B25,C21:X21,C1:X1)
- C26:
=LOOKUP(B26,C21:X21,C1:X1)
The first and second scores show the correct driver’s name but the third score shows an incorrect driver name for the correct score, (gives the fourth driver’s name).
If I contine to the fourth and fifth top scores it shows the correct driver name but the sixth shows the error #N/A.
Any suggestions as to what I am doing wrong, or is this a bug?