Hide calculations displaying 0, NaN, or Infinity
I'm trying to hide all calculations displaying 0, NaN, or Infinity. I've tried the following, but the field is still displaying:
if (aType == " " || (event.value == Infinity) || isNaN(event.value)) {
event.value = "";
Any suggestions?
