Max or Ceiling or Other

Bazzza67

New Member
Joined
Apr 17, 2015
Messages
22
Hi Boardmembers

Can anyone help, please?

I have a formula where I wish to calculate 2.25% of the base number, but if the result exceeds £12.50, I wish the cell to show a maximum value of £12.50. The image below will explain

How do I achieve this, please?

Thank you
 

Attachments

  • MrE.png
    MrE.png
    7.4 KB · Views: 7

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Hi Boardmembers

Can anyone help, please?

I have a formula where I wish to calculate 2.25% of the base number, but if the result exceeds £12.50, I wish the cell to show a maximum value of £12.50. The image below will explain

How do I achieve this, please?

Thank you
Try this -

Excel Formula:
=IF(Base*2.25%>12.5,12.5,Base*2.25%)

Simple
 
Upvote 0
How about
Excel Formula:
=MIN(12.5,A2*B2)
 
Upvote 0
You could try this :

=IF(B3+(b3*C3)>12.5,12.5, else b3+(B3*C3))

assuming B3 = base value, c3 = 2.25%

Rob
 
Upvote 0
Good spot, typo on my part, which I have now corrected.
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,507
Messages
6,125,201
Members
449,214
Latest member
mr_ordinaryboy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top