Vlookup

  • Thread starter Thread starter anurag.d
  • Start date Start date
A

anurag.d

I use vlookup function on a huge list.
However when a value is not found it returns the #N/A error.
Can anybody tell me a way whereby instead of #N/A error i get a numeri
0.
Means the formula shud first look for the value and return it and i
not found return a zero.
Thanks in advance
 
use vlookup function on a huge list.
However when a value is not found it returns the #N/A error.
Can anybody tell me a way whereby instead of #N/A error i get a numeri
0.
Means the formula shud first look for the value and return it and i
not found return a zero.
Thanks in advance.

use an if statement along the lines of
IF(ISNA(A1),"0",B1)
What this statment means is
IF the contents of A1 is #NA then make the contents 0, otherwise pu
the contents of cell B1 in.

Regards
E
 
Or, to do it in one step, make your formula something
like this: =if(isna(vlookup_formula),0,vlookup_formula)
 
Right,I want to make it in 1 step.
The formua u suggested is not getting accepted,their seems to be som
erro
 
I think PegL did.

If her suggestion didn't work, you may want to post your real formula.
 

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