VLOOKUP

G

Guest

I do not want to see FALSE if formula`s result is FALSE, but when I copy my
formulas to another worksheet I see it. How I can get rid of it ? nPlease,
help.
=IF(E11=2;VLOOKUP(C11;Taux;3);IF(E11=3;VLOOKUP(C11;Taux;4)))
 
B

Bob Phillips

=IF(E11=2;IF(ISNA(VLOOKUP(C11;Taux;3));"";VLOOKUP(C11;Taux;3));IF(E11=3;IF(I
SNA(VLOOKUP(C11;Taux;4));"";VLOOKUP(C11;Taux;4))))

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
O

Owen

This might simplify for you:

if(countif(C11,Taux)=0,"",VLOOKUP(C11;Taux;e11+1))

HTH
Owen
 
D

Don Guillett

or something like this maybe if c11 is a number
=IF(ISNUMBER(c11),VLOOKUP(c11,A1:E4,E11+1),"")
 
G

Guest

It appears to me that you haven't specified a result in the event E11 does
not equal 2 or 3.

=IF(E11=2;VLOOKUP(C11;Taux;3);IF(E11=3;VLOOKUP(C11;Taux;4),"place here"))
 

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

Returning Desired Results 5
Remove #N/A Error 3
if(and( 1
What's wrong with this if statement? 4
Formula being changed 4
VLOOKUP and colour 1
EXCEL - IF(IFERROR(VLOOKUP question 0
Excel Vlookup Help 0

Top