Vlookup Error #N/A

  • Thread starter Thread starter Abdul
  • Start date Start date
A

Abdul

I have tried to use
=VLOOKUP(MAX(B2:B16),A2:A16,1,FALSE)
where area B2:B16 contains numerical Data sorted Decending
and Area A2:A16 contains Names,
I want the cell containing the above formula to show the name of the person
having the highest points in that list, knowing the names are not sorted
alphabetically.
but I keep getting the final answer as:
#N/A
any suggestions what's wrong here? is there a better way to show the name of
the person having the highest points other than the following function?
=INDEX(A2:A16,1,1)
 
You can't use VLOOKUP in that way - the lookup value must be part of the
table and must be in the left-most column of the table. You will have to use
an INDEX/MATCH function.

Hope this helps.

Pete
 
Back
Top