Thread: IF and Vlookup
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Olivia Olivia is offline
external usenet poster
 
Posts: 11
Default IF and Vlookup

How do I lookup the value in column B for all (03), then lookup the value in
column C (i.e. 30), then return the value in column D.

For example here is what I want to examine:

in another worksheet, If cell B4, then look at value in C10,
then lookup the value in C10 in table_array C:D
and return the value in the second column an exact match

B C D
SITE# SACS FUND# FUND#
03 30 400
02 53 402
03 56 403
02 51 430
08 51 433

The column that is in ascending order is D. Please help.

Here is what I came up with but its returned a #VALUE
=IF(B4,IF(C10,(VLOOKUP(C10,Reference!$C:$D,2,FALSE ))))