Vlookup w/ #N/A suppression

  • Thread starter Thread starter Stephen
  • Start date Start date
S

Stephen

Is there a way I can wrap a vlookup in an IF statement to suppress #N/A
errors? Something like...

=IF(VLOOKUP(X32,weights.xls!Soil1,3,FALSE)LIKE"#N/A,"",VLOOKUP_(X32,weights.xls!Soil1,3,FALSE))
 
Hi Stephen,

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

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

| Is there a way I can wrap a vlookup in an IF statement to suppress #N/A
| errors? Something like...
|
| =IF(VLOOKUP(X32,weights.xls!Soil1,3,FALSE)LIKE"#N/A,"",VLOOKUP_(X32,weights.xls!Soil1,3,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

Concat a parameter into a vlookup? 5
VLOOKUP & ISNA 2
VLOOKUP help 2
Vlook up to combine data in many sheets 1
VLOOKUP return #N/A 4
if-then-else in VLOOKUP function 2
Vlookup function error 1
Modify Vlookup 5

Back
Top