Need help setting up a >< IF formula in Excel,

S

Sheryl

This is what I think the formula should read:
=IF(K18<SUM(k87+110)>SUM(K87+90),SUM(K18+800),"")
Excel doesn't agree. I'm trying to say that K18 is an entry cell and if
that value falls between K98+100 (+/-10) that the result will add 800 to K18.
If it falls outside of the +/- range, then the value will return blank.
Help please!
 
B

Bob Phillips

The SUM is superfluous, + makes it add

=IF(AND(K18<K87+110,K18>K87+90),K18+800,"")
 

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