VLOOKUP Help

G

Guest

I have a VLOOKUP formula but it returns #N/A, this is because the value im
looking for does not exist in my table array. How can I change the fomula so
if it returns #N/A, it is changed to 0.

My Formula is:

VLOOKUP($A5,'C:\Work\Tacho Infringements\[TDG EU.xls]9.4'!$1:$65536,26,FALSE)
 
B

Bob Phillips

=IF(ISNA(VLOOKUP($A5,'C:\Work\Tacho Infringements\[TDG
EU.xls]9.4'!$1:$65536,26,FALSE)),"",
VLOOKUP($A5,'C:\Work\Tacho Infringements\[TDG
EU.xls]9.4'!$1:$65536,26,FALSE))

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

fluffymoore said:
I have a VLOOKUP formula but it returns #N/A, this is because the value im
looking for does not exist in my table array. How can I change the fomula so
if it returns #N/A, it is changed to 0.

My Formula is:

VLOOKUP($A5,'C:\Work\Tacho Infringements\[TDG
EU.xls]9.4'!$1:$65536,26,FALSE)
 
N

Niek Otten

=IF(ISNA(YourFormula),"",YourFormula)

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

|I have a VLOOKUP formula but it returns #N/A, this is because the value im
| looking for does not exist in my table array. How can I change the fomula so
| if it returns #N/A, it is changed to 0.
|
| My Formula is:
|
| VLOOKUP($A5,'C:\Work\Tacho Infringements\[TDG EU.xls]9.4'!$1:$65536,26,FALSE)
 

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