How to replae #NA with 0

S

SG

HI

Any one can guide me that how to replace #NA with 0, iam using vlookup
with match but i doesn't works well

thanks
 
A

Arvi Laanemets

Hi

=IF(ISNA(VLOOKUP(...)),0,VLOOKUP(...))
or
=IF(ISERROR(VLOOKUP(...)),0,VLOOKUP(...))


Arvi Laanemets
 
S

SG

Hi

=IF(ISNA(VLOOKUP(...)),0,VLOOKUP(...))
or
=IF(ISERROR(VLOOKUP(...)),0,VLOOKUP(...))

Arvi Laanemets

hi Arvi

It works well thank you very much for your support
SG
 

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


Top