Blanking cells with formula errors

  • Thread starter Thread starter Richard Layzell
  • Start date Start date
R

Richard Layzell

The cell with the below formula returns the #N/A sign.

=VLOOKUP(A3,'!MW'!A:J,5,FALSE)

The value I am looking up (A3 on this occasion) is
sometimes #N/A (which I know)

Is there an IF formula that I can incoroporate within the
above formula to return "" if my lookup value (A3) equals
#N/A. ????

I hope someone follows this!

Thanks in advance!
 
Richard,

If the only time you want the blank is when A3 is #N/A then

=IF(ISNA(A3),"",VLOOKUP(A3,'!MW'!A:J,5,FALSE))

Dan E
 
Back
Top