formula problem

  • Thread starter Thread starter Gary
  • Start date Start date
G

Gary

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
 
Formulas return values to the cells that contain them.

So this formula has to go into H5:

=if(h7<16,0,sum(c43:m43))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Excel formula 2
Excel formula, sum the value cell and if empty cell left blank 0
combine formulas into 1 1
An easier way? 9
Showing Last value in a cell 9
Help !!! 2
worksheet_calculate 2
Print macro won't work 3

Back
Top