Calculation Using Tiered Pricing

Bazzza67

New Member
Joined
Apr 17, 2015
Messages
22
Hi board members

I am trying to create a formula whereby if I enter a user number in a reference cell, 100 for example, Excel uses
the below tiered pricing to calculate a monthly fee.

100 users should return a result of £13,340.00

9 @ £150
15 @ £150
50 @ £135
26 @ £115

User Tier
1-9 users__________£150.00
10-24 users________£150.00
25-74 users________£135.00
75-249 users_______£115.00
250-500 users______£110.00
501-750 users______£110.00
751-1000 users_____£110.00

Thank you in anticipation!
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Try this (I color coded each part, so it should be easier to see how it is working):
=(MIN(A1,24)*150)+(MAX(MIN(50,A1-24),0)*135)+(MAX(MIN(175,A1-74),0)*115)+(MAX(A1-249,0)*110)
 
Upvote 0
You are welcome!
If you break each section down, hopefully it makes sense.
 
Upvote 0

Forum statistics

Threads
1,216,124
Messages
6,128,990
Members
449,480
Latest member
yesitisasport

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