VLOOKUP not working

T

Teri

I have two workbooks; I want to look up the value in column 2 in one workbook
and put it in column 2 of the other workbook. I am matching the values in
column 1 in each. When I fill down, I get the exact same answer. My auto
calculation is turned on. Here is my formula:
=IF(ISERROR(VLOOKUP(A2,'[Aetna - PPO & Dental Jul
2007.xls]Sheet1'!$A$2:$B$126,2)),"",VLOOKUP(A2,'[Aetna - PPO & Dental Jul
2007.xls]Sheet1'!$A$2:$B$126,2))
Can anyone help?
 
T

T. Valko

Try using the 4th argument to VLOOKUP and set it to either 0 or FALSE:

=IF(ISERROR(VLOOKUP(A2,'[Aetna - PPO & Dental Jul
2007.xls]Sheet1'!$A$2:$B$126,2,0)),"",VLOOKUP(A2,'[Aetna - PPO & Dental Jul
2007.xls]Sheet1'!$A$2:$B$126,2,0))
 

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