Help with formula

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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))
 
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)))
 
Back
Top