Need help claculating multiple rates for one number

Jboehme

New Member
Joined
Jun 10, 2014
Messages
10
HI, I am calculating our business sick day and vacation liability. The rates are 1-100 is $25, 101-200 is $35 and 201-300 $50. Is there a formula to help me calculate these rates. Here is an example
DaysAmount
982,450
30011,000
2016,050
1504,250
1153,025

<tbody>
</tbody>
Thanks for the help
 

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.
Try this:

=IF(A2>200,(A2-200)*50+100*35+100*25,IF(A2>100,(A2-100)*35+100*25,A2*25))

However maybe better to use cell references for the dollar amounts so they can be easily changed.
 
Upvote 0

Forum statistics

Threads
1,221,153
Messages
6,158,237
Members
451,477
Latest member
CWebbers

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