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.
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