troubleshoot vlookup returning #N/A

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

Guest

I am trying to troubleshoot a Vlookup formula that inconsistently returns an
N/A#.
In one cell where there is no match it correctly returns a zero. Later
where there is no match it returns the pesky #N/A.

Formula I am using is as follows
=IF(-VLOOKUP(A73,actual,($A$1*2),TRUE)=0,0,-VLOOKUP(A73,actual,($A$1*2),FALSE))

I have tried every combination of true/false in the two vlookup formulas.
 
Hi
try for example
=IF(ISNA(VLOOKUP(A73,actual,$A$1*2,False)),"no
match",VLOOKUP(A73,actual,$A$1*2,False))

--
Regards
Frank Kabel
Frankfurt, Germany

dillon said:
I am trying to troubleshoot a Vlookup formula that inconsistently returns an
N/A#.
In one cell where there is no match it correctly returns a zero. Later
where there is no match it returns the pesky #N/A.

Formula I am using is as follows:
=IF(-VLOOKUP(A73,actual,($A$1*2),TRUE)=0,0,-VLOOKUP(A73,actual,($A$1*2)
,FALSE))

I have tried every combination of true/false in the two vlookup
formulas.
 

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

Back
Top