Both D2 and F2 contain formulas that rely on inputted values in other cells. In a third cell (G2), I have a formula that utilizes both D2 and F2. I get accurate results just fine. However, using the formula below, when either D2 or F2 has no value the third cell says "#VALUE!" when I would prefer it to stay blank.
How do I fix that? Neither D2 or F2 are blank because they contain formulas, so I cannot use the ISBLANK condition. And my formula is not fixing it:
=IF(OR(D2=0,F2=0),"",IF(F2>D2,F2*2,F2))
Can anyone help me out?