Update List Number Going Forward in a Column Once Other Cell Is Greater Than A Specific $ Number

bear1970

New Member
Joined
Dec 20, 2013
Messages
26
Office Version
  1. 2016
Hello! This one has me wrapped around the axle for sure!

I'm creating a sales person's commission calculator. New sales people will start at a specific percent commission (currently showing 72% in column E) I have a list on the right of available commission percentages. This list is available as a drop down in column E. However, when the companies amount in cell H13 hits $19,808 and higher their commission will change to 92% going forward. So I'd like the amount in column E to change at the point and row that H13 hits or goes above the $19,808 as each sale is entered.

Example: So let's say sales person Mary starts the years out at 76% in column "Sales person's split %". The company will enter in 76% in column E going down. Mary sells enough for the "Company $" total to reach or exceed $19,808 in whatever row so that and subsequent rows in column E all change to 92%.

I've attached the sheet below. I do so appreciate any and all help!!

Thank you,
-Barry

Agent Commission.xlsx
ABCDEFGHIJKLM
1
2List priceCommisionGCISales person's split %Company split %Sales person $Company $List
31$500,000.003%15,000.007228$10,800.00$4,200.0072
427276
537280
647284
757288
867292
9772
10872
11972
12
13Totals$10,800.00$4,200.00
14
Sheet1
Cell Formulas
RangeFormula
D3D3=B3*C3
F3F3=100-E3
G3G3=D3*E3%
H3H3=D3*F3%
G13:H13G13=SUM(G3:G11)
Cells with Data Validation
CellAllowCriteria
E3:E11List=$M$3:$M$8
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Ugh.. I do not know what that is!
@Rijnsent provided a link to how to use Named ranges in post 8 (that you also copied into post 9), all the data you need to set them up is in the XL2BB in post 8 bar you'll need to change the sheet names to match yours
 
Upvote 0
@Rijnsent I have NAME errors all over the place even after renaming the page. Not sure what to do next??

Agent Commission.xlsx
ABCDEFGHIJK
1Sales priceComm.GCICum. GCICum Agent$Agent$Agent %Company$
25040000.031512015120#NAME?#NAME?#NAME?#NAME?Threshold19808
31250000.03375018870#NAME?#NAME?#NAME?#NAME?Low percentage0.72
48450000.032535044220#NAME?#NAME?#NAME?#NAME?High percentage0.98
54000000.062400068220#NAME?#NAME?#NAME?#NAME?
65340000.031602084240#NAME?#NAME?#NAME?#NAME?
78740000.0326220110460#NAME?#NAME?#NAME?#NAME?
85340000.0316020126480#NAME?#NAME?#NAME?#NAME?
90126480#NAME?#NAME?#NAME?
100126480#NAME?#NAME?#NAME?
110126480#NAME?#NAME?#NAME?
12
13Totals#NAME?#NAME?
Blad1
Cell Formulas
RangeFormula
C2:C11C2=A2*B2
D2:D11D2=SUM($C$2:C2)
E2:E11E2=IF(D2>threshold,(D2-threshold)*perc_high+threshold*perc_low,D2*perc_low)
F2:F11F2=IFERROR(E2-E1,E2)
G2:G8G2=F2/C2
H2:H11H2=C2-F2
F13,H13F13=SUM(F2:F11)
 
Upvote 0
Then your named ranges aren't correct (again) what do you get with the below?

Book3
ABCDEFGHIJK
1Sales priceComm.GCICum. GCICum Agent$Agent$Agent %Company$
25040000.03151201512010886.410886.40.724233.6Threshold19808
31250000.0337501887013586.427000.721050Low percentage0.72
48450000.03253504422038185.5224599.120.970379750.88High percentage0.98
54000000.06240006822061705.52235200.98480
65340000.03160208424077405.1215699.60.98320.4
78740000.0326220110460103100.725695.60.98524.4
85340000.0316020126480118800.315699.60.98320.4
90126480118800.300
100126480118800.300
110126480118800.300
12
13Totals118800.37679.68
Blad1
Cell Formulas
RangeFormula
C2:C11C2=A2*B2
D2:D11D2=SUM($C$2:C2)
E2:E11E2=IF(D2>$K$2,(D2-$K$2)*$K$4+$K$2*$K$3,D2*$K$3)
F2:F11F2=IFERROR(E2-E1,E2)
G2:G8G2=F2/C2
H2:H11H2=C2-F2
F13,H13F13=SUM(F2:F11)
 
Last edited:
Upvote 0
Hi @bear1970 ,
you could try the solution that @MARK858 posted, it doesn't have named ranges in it.

If you want to use named ranges, please do check out the link I provided. The basics of named ranges: in a "normal" formula you could write =A1+A2 . Alternatively, you select cell A1 and check out the box at the left of the formula bar (standard, that box holds the cell address, like in this case "A1"). In that box, you write the name you'd like it to have, e.g. "tax_rate". After you've done that, your formula could become =tax_rate+A2. Excel "translates" the name "tax_rate" into A1. So that's what you need to do with K2 (name it perc_high), K3 (perc_low) and K4 (threshold).
Same goes for ranges: if you select e.g. the range B1:B10, you can use that same box to give that range a name, say "dollar_values". In a formula, you could than use =SUM(dollar_values).

Named ranges are there to make formulas more readable, but not mandatory to make excel work :-).
 
Upvote 0
Hey @MARK858 The math from your post is not making sense to me in regards to the regular calculations. It makes me thing I have not communicated very well. I'm going to spend some more time with this and see what I can get going even if it's further clarification. Thank you so much for your help! @Rijnsent too!

BTW.. Happy New Year's ALL!

 
Upvote 0
The math is from the formulas you posted in post 15, all I have done is replaced the named ranges with cell references
 
Upvote 0

Forum statistics

Threads
1,225,627
Messages
6,186,100
Members
453,337
Latest member
fiaz ahmad

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