Vlookup Error #N/A

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)
 
S

Stefi

=INDEX(A2:A6,MATCH(MAX(B2:B6),B2:B6,0))

Regards,
Stefi

„Abdul†ezt írta:
 
P

Pete_UK

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top