No calculation if one field is zero
My original equation is 20250/(Downflow+Inflow)
I want the calculated field to be blank if the inflow field stays 0.
This is the code I've been playing with, but I just can't get it to take.
event.value = (20250/(getField("DownflowCFM").value + getField("InflowCFM").value));
if(getField("InflowCFM").valueAsString === 0)) event.value = "";
Can someone help, please?
