include maximum number in fomula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a formula

=sum(t2*.01*v2) I want the maximum result to be $1500.00
 
One way:

=MIN(1500,T2*V2*0.01)

Note that your SUM() is superfluous - it returns the same value as

=t2*0.1*v2
 

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

Back
Top