IF statement help

C

Confusicous

I need an IF statement that will turn the N/A to 0

Here is my Vlookup formula:

=VLOOKUP($A4,'P40'!$A$2:$H$83,7,FALSE)

Thanks for the help!
 
S

Sean Timmons

=IF(ISNA(VLOOKUP($A4,'P40'!$A$2:$H$83,7,FALSE)),0,VLOOKUP($A4,'P40'!$A$2:$H$83,7,FALSE))
 
C

Confusicous

Thanks for the help. I appreciate it.

Bob Phillips said:
If you have Excel 2007

=IFERROR(VLOOKUP($A4,'P40'!$A$2:$H$83,7,FALSE),0)


--
__________________________________
HTH

Bob
 

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

Top