
Originally Posted by
ChemistB
If you want the root cause of your issue, here is what was happening.
In some of your earlier cells, you were using
=IFERROR(VLOOKUP($C$2,$M$1:$N$6,2,0),"")
This does not produce a "Blank" cell. If you use the formula =ISBLANK(K62), it will come up false. It is a null set and excel sees it as text. (=ISTEXT(K62) = TRUE). When you try to add or multiply text, you get an error so the IFERROR function takes over and you get "" in your cell.
If the cell is really blank or is 0, then the arithmetic works perfectly and you get a result of 0, not an error.
Since you don't seem to want zero's or errors, one way to fix your problem would be with this equation
=IFERROR(1/(1/(K60+(K60*L60))),"")
Bookmarks