I have two formulas that need the same function.
In cell H7, I have the following formula:
I need to change that formula so that if cell F7 has a value, but cell D7 is blank, then cell H7 will stay blank.
The second formula in cell R7 is:
I need to change that formula so that if cell P7 has a value, but cell N7 is blank, then cell R7 will stay blank. Thank you!
In cell H7, I have the following formula:
Code:
=IF(F7="","",ROUNDDOWN(((W47*N7)+(X47*N9)+(Y47*N11)+(Z47*N13)+(AA47*N15)+(AB47*N17)+(AC47*N19)+(AD47*N21)+(AE47*N23)+(AF47*N25))/F32*(J7/100),0))
I need to change that formula so that if cell F7 has a value, but cell D7 is blank, then cell H7 will stay blank.
The second formula in cell R7 is:
Code:
=IF(P7="","",IF(F30>(P7+8),"",IF(F30<(P7-8),"0",ROUNDDOWN((N7*W37)/IF(F32=0,1,F32),0))))
I need to change that formula so that if cell P7 has a value, but cell N7 is blank, then cell R7 will stay blank. Thank you!