M
Magoo
If Sum of two cells is Greater than or equal to 5 then +0.5 If not
then normal sum.
then normal sum.
=IF(A1+B1>=5,.05,0)
or maybe you are looking for something like. You didn't say
=a2+IF(A1+B1>=5,.05,0)
=123+IF(A1+B1>=5,.05,0)
Don Guillett
SalesAid Software
- Show quoted text -
Magoo said:Don, What I would like to do is have the Cell be the Sum of a1-a2 but
with a twist.
If the sum is Less than or equal to 5, I would like to add 0.5 and
have that show up in the cell.
If the sum is Greater than that I just want the normal result.
for instance;
a1=40
a2=35
The difference of these would normally be 5. But I would like the
formula to add an additional 0.5 to that figure making it 5.5.
on the other hand if;
a1=40
a2=32
The difference would be 8. At this point would not need to add the
additional 0.5. So the Cell's Contents would remain 8.
I hope this makes sense...
Thanks for your Help!
Sorry, you wanted that for the difference, didn't you.
=IF(A1-B1>=5,A1-B1+.05,A1-B1)
- Show quoted text -