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
16
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

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Hi bear, I don't know why you have a whole list of percentages, but what you could do is crudely:
Excel Formula:
E4: =IF(SUM($H$3:H3)>19808,92,E3)
(and drag down.
But I assume you want some smarter system where you have brackets? E.g. 0-19807 -> 72 and 19808+ -> 92 ? If so, you could do it like this:

Map1
ABCDEFGHIJKLMN
1List priceCommisionGCISales person's split %Company split %Sales person $Company $Cumulative Company$Lookup PercTotal Comp$Perc
215000000,03150007228108004200420072072
325000000,063000072282160084001260080600080
435000000,0630000722821600840021000921980892
545000000,33165000928151800132003420092
65923420092
7692
8792
9892
10992
11
12Totals20580034200
Blad1
Cell Formulas
RangeFormula
F2:F5F2=100-E2
G2:G5G2=D2*E2%
H2:H5H2=D2*F2%
I2:I6I2=IFERROR(H2+I1,H2)
J2:J6J2=XLOOKUP(I2,$M$2:$M$4,$N$2:$N$4,0,-1,1)
D2:D5D2=B2*C2
E3:E10E3=IF(SUM($H$2:H2)>19808,92,E2)
G12:H12G12=SUM(G2:G10)
 
Upvote 0
Hello Rijnsent! Thank you so very much for the reply!!
  1. I made a mistake!! The commission goes to 98% (not 92%) after Company $ reaches $19,808. I was able to update the formula in column E but not sure how that interacts with everything else?
  2. Curious why the formula isn't necessary or used in cell E2?
  3. It appears you did away with the list/drop down I had which is fine. Is this just a cleaner way of doing it?
  4. I would like to understand what column I,J,M,N are doing.
I understand you are probably very busy but I would like to learn and understand more if you have a few moments!

Thank you again for your time and patience!
-Barry
 
Upvote 0
Hi Barry,

4. Okay, column I shows the cumulative Company$ including that line, as that is the base to select what percentage somebody should get from that point. Column M & N are basically a lookup table, where the value from column I is compared with. I'm using the XLOOKUP function (XLOOKUP Function), the penultimate parameter is -1, which means that the value that I want to search for has to be "-1 = exact match or next smallest" (see the link). So in J3 for example. the function looks up 12600 (value of I3), compares that with the list in M2:M4, finds that the second row is the outcome (as that is the biggest value smaller than 12600), so returns from N2:N4 the second value (which is 80).
3. Well, if you have a table to calculate the percentage, why would you give anyone the option to fill in something?
2. As I wrote: that formula in column E is really crude and if any of the parameters change, you have to change all the formulas, that's why the second solution is much more flexible.
1. The exact values are up to you, the formulas are the main thing :-).

Cheers,
Koen
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,285
Members
452,902
Latest member
Knuddeluff

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