VLOOKUP - how to avoid the #N/A result

k-real

New Member
Joined
Jul 21, 2005
Messages
32
Hello everyone,

I've been trying to extract values from a different spreadsheet than the one where the formula following is:
=VLOOKUP(D9,'[Book1.xls]2006'!$M:$N,2,FALSE)

It does work fine, when it finds the value in $M, but when it doesn't - it returns #N/A. Is there a way it would just display nothing? I need this to sum afterall and the #N/A result doesn't quite help the case...
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
=if(iserror(VLOOKUP(D9,'[Book1.xls]2006'!$M:$N,2,FALSE),"",VLOOKUP(D9,'[Book1.xls]2006'!$M:$N,2,FALSE))
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,550
Members
449,088
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top