Calculating Tiers

rjblair

New Member
Joined
Apr 13, 2015
Messages
2
I'm trying to calculate amounts of units in tiers. So the tiers are:

T1 0-299
T2 300-349
T3 350-550
T4 551-650
T5 651 -

so if I put in 250, it should show 250 in the first tier. If I entered 600, it would show 299 in first tier, 50 in second tier, 201 in the 3rd and 50 in the 4th (for a total of 600) and so on. I've tried using "if" statements but can't get past the second tier. I'm using this to calculate commissions and can easily do this once I have the amount of "units" in each tier.

Thanks!!!!

RJ
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
ABCD
1 600
2
3T10299299
4T230034950
5T3350550201
6T455165050
7T5651999999990

<colgroup><col><col span="4"></colgroup><tbody>
</tbody>

Using the above layout, enter your amount in D1. Enter this formula in D3 and copy down:
Code:
=MIN(C3-C2,D$1-SUM(D$2:D2))

If this is not what you're looking for, please show a sample of how you'd like the results to look.
 
Upvote 0
RON!!!!! I've been fumbling around like an idiot with these long formulas and you come in with this?!!! BOOM, it works!!! awesome! THANK YOU!!!!!
 
Upvote 0

Forum statistics

Threads
1,214,790
Messages
6,121,608
Members
449,038
Latest member
apwr

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