Setting a cell to react to certian conditions

G

Guest

I need to set 1 cell to meet certian conditions. ex. c16<=0, then e14=c16. If
c16>0, then e14=0
I have tried using "if". When I do, the only results I get are either true
or false.
I need the cell (e14) to actually perform the function stated above.
 
G

Guest

=IF(C16<=0,C16,0)

this will return zero if the cell value is more than 0
if you do not want zero ( but a blank cell, replace the last zero with ""
 

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