How do I write this formula

B

Bob Greenblatt

If c7 is more than 40 put the amount over 40 in c8
You need to understand that a formula can only change the value of the cell
it is in. Formulas CAN NOT change the value of another cell. So, to do what
you want, put this formula in C8:
=if(c7>40,c7-40,0)

This formula will make C8 a zero if C7 is less than 40. To have C8 be blank
in this case, change the 0 in the above formula to "".
 

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

Top