Calculating Percentages

Jimh64

New Member
Joined
Mar 22, 2010
Messages
21
Hello! Thank you in advance for the help!

I am trying to use a calculation where the % used to calculate a number is based on the % entered.

For example:
If the % is below 5% then the multiplier would be zero.
If the % is 5.0% to 5.24% then multiply by 5%
If the % is 5.25% to 5.49% then multiply by 10%
If the % is 5.5% or higher then multiply by 15%

I need to enter in the % and then it will automatically multiply another cell by the correct %. This is for a commission situation.

For example, if sales were $1000 and the % entered in cell was 4.75% then no commission. If sales were $1000 and the % entered was 5.35% then the commission would be $1000 * 10% or $100

Any help is appreciated!

Thanks!
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
I thought this might help

So in this example the Delivered Number is entered at $75000. The PPP% is 4%, so the commission should be zero not $450.

Sales Goals Calc. v1.1.xlsx
BCD
4Current ActualComm.
5Delivered $$75,000.00$4,500.00
6
7PPP %4.00%$450.00
8
9PPP $$3,000.00
10
11
12
13Avg. Sale$1,200.00
14
15# Sales63
16
17
18Total Comm.$4,950.00
PPP Calculator
Cell Formulas
RangeFormula
D5D5=C5*6%
D7D7=C9*15%
C9C9=C5*C7
C15C15=C5/C13
D18D18=D5+D7
 
Upvote 0
If you're using Excel 365, try this:
MrExcel_20220430.xlsx
ABC
1Sales% InputCommission
210005.35%100
Sheet2
Cell Formulas
RangeFormula
C2C2=XLOOKUP(B2,{0,0.05,0.0525,0.055},{0,0.05,0.1,0.15},"error",-1,1)*A2
 
Upvote 0
Jim because you can never have too many solutions. Here is mine.


Book1
ABC
1AmountPercentCommison
2$ 1,000.005.35%$100.00
Sheet1
Cell Formulas
RangeFormula
C2C2=IF(B2>0.0549,A2*0.15,IF(B2>0.0524,A2*0.1,IF(B2>0.049,A2*0.05,A2*0)))
 
Upvote 0
Thanks for the help! However, I forgot to tell you that there is a calculation in C9 and I think it messes up the formula.

The % in C7 is multiplied by the $'s in C5. Therefore $75,000 * 5.5% is $4,125.

5.5% means the $4,125 is multiplied by 15% to get the $618.75. The only numbers inputted are in yellow.

If it was 5.25% then it would be multiplied by 10% not 15% per the chart above.

Sorry to be a pain,,,, thanks!


Sales Goals Calc. v1.1.xlsx
BCD
4Current ActualComm.
5Delivered $$75,000.00$4,500.00
6
7PPP %5.50%$618.75
8
9PPP $$4,125.00
PPP Calculator
Cell Formulas
RangeFormula
D5D5=C5*6%
D7D7=XLOOKUP(C7,{0,0.05,0.0525,0.055},{0,0.05,0.1,0.15},"error",-1,1)*C9
C9C9=C5*C7
 
Upvote 0
Is this what you mean?
MrExcel_20220430.xlsx
BCD
4Current ActualComm.
5Delivered $750004500
6
7PPP %0.055618.75
8
9PPP $4125<-- you don't need this for the calculation
Sheet4
Cell Formulas
RangeFormula
D5D5=C5*6%
D7D7=XLOOKUP(C7,{0,0.05,0.0525,0.055},{0,0.05,0.1,0.15},,-1,1)*C5*C7
C9C9=C5*C7
 
Upvote 0
Solution
Is this what you mean?
MrExcel_20220430.xlsx
BCD
4Current ActualComm.
5Delivered $750004500
6
7PPP %0.055618.75
8
9PPP $4125<-- you don't need this for the calculation
Sheet4
Cell Formulas
RangeFormula
D5D5=C5*6%
D7D7=XLOOKUP(C7,{0,0.05,0.0525,0.055},{0,0.05,0.1,0.15},,-1,1)*C5*C7
C9C9=C5*C7

Thanks for the reply! Actually the number in C9 is used for the calculation of the commission.

I enter the Delivered Number ( C5) and the PPP% (C7). Depending on what the PPP% is is how you determine what to multiple the PPP$'s by in C9.
C5*C7 gives me C9.

If the % in C7 is below 5% then multiply C9 by zero
If the % in C7 is 5.0% to 5.24% then multiply C9 by 5%
If the % in C7 is 5.25% to 5.49% then multiply C9 by 10%
If the % is C7 is 5.5% or higher then multiply C9 by 15%

The result of that calculation would show up in D7

Hope this helps! I really appreciate the help from everyone!
 
Upvote 0
Have you tried my suggestion in post #6? It does what you describe. My comment about not needing C9 for the calculation means that the value in C9 is not explicitly needed in the computation for commission shown in D7 because that same value is calculated within that formula as the product of C5 and C7. You can leave the value showing in C9 if you need to look at it, but the D7 commission formula does not refer to it.
 
Upvote 0
Have you tried my suggestion in post #6? It does what you describe. My comment about not needing C9 for the calculation means that the value in C9 is not explicitly needed in the computation for commission shown in D7 because that same value is calculated within that formula as the product of C5 and C7. You can leave the value showing in C9 if you need to look at it, but the D7 commission formula does not refer to it.

Thank you! That does work. When you posted that originally, I thought you were asking a question about that field. It works like I had hoped it would.

I really appreciate you hanging in there with me to solve the problem. Have a nice day!!
 
Upvote 0

Forum statistics

Threads
1,215,868
Messages
6,127,408
Members
449,382
Latest member
DonnaRisso

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