Tier Fee Equation

zmonaghan

New Member
Joined
Feb 6, 2018
Messages
3
Hi -

Can anyone help me figure out how to calculate total gross on the table? I would like it to calculate $100,000 in first column, $22,500 in second, and $20,000 in third.

Proposed Fees
Vehicles Sold (Non-retroactive)Seller's FeeTotal Gross
0 - 2000$50
2001 - 2500$45
2501 -3000$40
> 3000$35
<colgroup><col width="206" style="width: 155pt; mso-width-source: userset; mso-width-alt: 7533;"> <col width="143" style="width: 107pt;" span="2"> <tbody> </tbody>
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Hi,

This will give you Separate and Total Gross hardcoding your tier in the formulae with a user assigned Number of Vehicles Sold in A9:


Book1
ABCD
1Proposed Fees
2Vehicles Sold (Non-retroactive)Seller's FeeSeparate GrossTotal Gross
30 - 2000$50$100,000$130,500
42001 - 2500$45$22,500
52501 -3000$40$8,000
6> 3000$35$0
7
8Number of Vehicles Sold
92700
Sheet35
Cell Formulas
RangeFormula
C3=MIN(2000,A9)*B3
C4=MIN(500,MAX(0,A9-2000))*B4
C5=MIN(500,MAX(0,A9-2500))*B5
C6=MAX(0,A9-3000)*B6
D3=SUM(MIN(2000,A9)*B3,MIN(500,MAX(0,A9-2000))*B4,MIN(500,MAX(0,A9-2500))*B5,MAX(0,A9-3000)*B6)


This will give you Separate and Total Gross using a Table by separating your Tiers into two Columns, this gives you the flexibility of changing the requirements without having to change the formulae:


Book1
ABCDE
12Proposed Fees
13Vehicles Sold (Non-retroactive)Seller's FeeSeparate GrossTotal Gross
1402000$50$100,000$134,500
1520012500$45$22,500
1625013000$40$12,000
17> 3000$35$0
18
19Number of Vehicles Sold
202800
Sheet35
Cell Formulas
RangeFormula
D14=MIN(B14,A20)*C14
D15=MIN(B15-B14,MAX(0,A20-B14))*C15
D16=MIN(B16-B15,MAX(0,A20-B15))*C16
D17=MAX(0,A20-B16)*C17
E14=SUM(MIN(B14,A20)*C14,MIN(B15-B14,MAX(0,A20-B14))*C15,MIN(B16-B15,MAX(0,A20-B15))*C16,MAX(0,A20-B16)*C17)


But I might be Overthinking it for you, and as your description in your post, you Only want the simple math:


Book1
ABC
23Proposed Fees
24Vehicles Sold (Non-retroactive)Seller's FeeTotal Gross
250 - 2000$50$100,000
262001 - 2500$45$22,500
272501 -3000$40$20,000
28> 3000$35
Sheet35
Cell Formulas
RangeFormula
C25=2000*B25
C26=500*B26
C27=500*B27
 
Upvote 0
You're welcome, welcome to the forum, glad it helped.
 
Upvote 0

Forum statistics

Threads
1,214,818
Messages
6,121,725
Members
449,049
Latest member
MiguekHeka

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