Help with formula

G

Guest

What formula do you use if you want your total to show zero if it is below a
given amount in a specifide colume and/or the overage if it is above a given
amount in a specifide colume
 
B

Bernard Liengme

Question is not too clear but do these help?

=IF(SUM(A1:A200)<1000,0,SUM(A1:A200) to show 0 if SUM < 1000
=IF(SUM(A1:A200)>5000,0,SUM(A1:A200) to show 0 if SUM > 5000

OR to show 0 if either condition applies
=IF(OR(SUM(A1:A200)<1000, SUM(A1:A200)>5000,0,SUM(A1:A200))
 
R

Ragdyer

If I understand what you want:

For example,
Sum A1:A10, and if total is:
Less then 0, display 0,
More then 25, display 25,

=MAX(0,MIN(25,SUM(A1:A10)))
 

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

Similar Threads


Top