If formula

J

Janie

I am trying to find an if formula that says if the result of A-B is less than
..03 then 0 but if the result is less than 0 (example -.03) than show result.
The reasoning may help. We don't want to be bothered with amounts less than
3 cents but we do want to display the credit balances because we have to
refund the amount.
Another way of trying to explain what I am trying to do is if the result of
A-B is either .01,.02,.03, than just make it 0 but if it is -.01 show result
as negative.
Any help would be appreciated.
 
D

Dave

Hi Janie,
Try this formula:
=IF(AND(A1>0;A1<0,4);0;A1)
This formula gets its info from Cell A1.
You will have to change each "A1" to the reference of the approprite cell in
your sheet.
If it produces an error, use
=IF(AND(A1>0,A1<0.4),0,A1)
Regards - Dave.
 

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