VLOOKUP

  • Thread starter Thread starter BillFitz
  • Start date Start date
B

BillFitz

vlookup is not finding reference numbers from one worksheet to another in
same excel file. I have tried copying formats from lookup column to reference
column in data worksheet. I have made lookup range absolute by using $
prefixes
 
The first thing that comes to mind is that you are not using the fourth and
final parameter to VLOOKUP. It must be False. E.g.,

instead of
=VLOOKUP(1,A1:C10,2)
use
=VLOOKUP(1,A1:C10,2,FALSE)


--
Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)
 
The first thing that comes to mind is that you are not using the fourth and
final parameter to VLOOKUP. It must be False.  E.g.,

instead of
=VLOOKUP(1,A1:C10,2)
use
=VLOOKUP(1,A1:C10,2,FALSE)

--
Cordially,
Chip Pearson
Microsoft Most Valuable Professional
    Excel Product Group
Pearson Software Consulting, LLCwww.cpearson.com
(email on web site)
thank you are your answer.

I actually i was using the flase parameter. However, my problem is
that when I use the vlookup for pick what coorespond to the second
largest (if the first and second largest value are equal as show
below) the formula does not pick up. Please help..

Peter: 8
John: 8
Tom: 6

I can pick up "peter" using the following fomula: =VLOOKUP(LARGE(E4:$E
$10,1),$C$4:$D$10,2,FALSE) but when I need get the second largest it
doesnt work.

thanks a lot.
 

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

Similar Threads

VLookup 1
Two Condition Vlookup 1
Lookup or VLookup or something else?? 2
VLOOKUP TABLE ERROR 6
vlookup not working 3
VLOOKUP AND N/A ERRORS 6
vlookup and multiple rowns that meet criteria 3
nested vlookup? 9

Back
Top