Need to know how to write a calculation...

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

Guest

I need to take the $ amount in b10 & mulitply it my 20% but tell the formula
that if the result is >$2,700 just put $2,700 in the answer.
Can someone write this out for me?
Thank you
 
Try something like this:

=MIN(B10*20%,2700)

Does that help?
***********
Regards,
Ron

XL2002, WinXP
 
=IF(B10*120%>2700,2700,B10*120%)

I've assumed you want the base increased by 20% and not 20%of the base
price.

Regards.

Bill Ridgeway
Computer Solutions
 
That works just as well AND is shorter than my suggestion.

Regards.

Bill Ridgeway
Computer Solutions
 

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