Hey guys,
I need a small help.
Cell G36 has the formulae
Cell F36 has the formulae
So i want to make a IF statement in cell D43,
If G36 is equal to 0 (or if cell is blank) , then i want to show blank or 0 in D43.
If G36 is not blank then, I want it to have this formulae F36/2.916
I made this formulae. But its wrong. I dont know where I am doing it wrong
I need a small help.
Cell G36 has the formulae
Code:
=O38+O39
Code:
=O32-G36
So i want to make a IF statement in cell D43,
If G36 is equal to 0 (or if cell is blank) , then i want to show blank or 0 in D43.
If G36 is not blank then, I want it to have this formulae F36/2.916
I made this formulae. But its wrong. I dont know where I am doing it wrong
Code:
=IF(G36="","",F36/2.916)