Multiple IF & VLOOKUP functions

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

This formula below works as shown
=IF(D10=0.5,(VLOOKUP(I10,Table_A,2,0))). the result is shown in 'J10'

But 'D10' has 9 possibilities and 'I10' has to look up 9 tables; Table_A
through Table_I which are in sheet three. for each possibility there is a
table for the answer.

Can someone help with this please.
Thanks in advance
 
One way:

=VLOOKUP(I10, INDIRECT(VLOOKUP(D10, $M$1:$N$9,2)),2,FALSE)

where

M N
1 0.5 Table_A
2 0.74 Table_B
3 ...
 
Don't know how your data tables are set up - I suspect you could just
create another table for the lookup...
 
Hello JE,
I tried and failed, would you be interrested in looking at my spread sheet?
Thanks,
Serge
 
Hello JE,
It's 7:15 pm at home and I finally understood the formula and it works fine.
I'm so happy.
Many thanks again.
I just could not see my way through this without your help.
Serge J.
 
Back
Top