I have 6 columns and 3 equations : E*F=G, H*G=I & G+I=J
I don't want zeros to print if a cell in F or H is empty.
Currently I have these equations and everything is dependent on the F & H Cell:
column G: IF(ISBLANK(F22),"",E22*F22)
Column I: IF(ISBLANK(H22),"",H22*G22)
Column J: IF(ISBLANK(F22),K22,G22)+IF(H22>0,+I22) Where K22 is an empty cell.
without using K, the result was #Value! if F is blank.
How do I get nothing to print in Column J if cells in Column F are empty.
Presently "zeros" print in Column J.