Change #N/A to Blank cell

user3440968 picture user3440968 · Mar 20, 2014 · Viewed 40.1k times · Source

How can I change the #N/A to the blank cell if nothing in that cell?

Eg. =VLOOKUP(B19:B36;$TABLE.A1:C46;2;0)

I think I might need something like an ISERROR check but I don't 100% know what I'm doing.

Answer

ttaaoossuu picture ttaaoossuu · Mar 20, 2014

If we're talking about Excel 2010 and later you can use IFERROR:

=IFERROR(VLOOKUP(B19:B36;$TABLE.A1:C46;2;0);"")

You can also put text into the final string result