use*_*968 6 formulas openoffice-calc
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)
Run Code Online (Sandbox Code Playgroud)
I think I might need something like an ISERROR check but I don't 100% know what I'm doing.
如果我们谈论Excel 2010及更高版本,您可以使用IFERROR:
=IFERROR(VLOOKUP(B19:B36;$TABLE.A1:C46;2;0);"")
Run Code Online (Sandbox Code Playgroud)
您还可以将文本放入最终的字符串结果中