G Gary Oct 29, 2008 #1 I am trying to create a formula that checks the value of h7 if it is <16 then h5 = 0 else h5 =sum(c43:m43) can anyone help? thanks
I am trying to create a formula that checks the value of h7 if it is <16 then h5 = 0 else h5 =sum(c43:m43) can anyone help? thanks
D Dave Peterson Oct 29, 2008 #2 Formulas return values to the cells that contain them. So this formula has to go into H5: =if(h7<16,0,sum(c43:m43))
Formulas return values to the cells that contain them. So this formula has to go into H5: =if(h7<16,0,sum(c43:m43))
G Gary Oct 29, 2008 #5 works great thanks -- Gary John C said: H5: =(H7>=16)*SUM(C43:M43) Click to expand...