reduce totals by 25%

Gonney

New Member
Joined
Jul 28, 2022
Messages
19
Office Version
  1. 365
Platform
  1. Windows
Hi Team,

For privacy reasons I've recreated a dummy sheet. What I'm attempting to do is have a sheet that reduces Column H and Column K by 25% each if conditions are not met.

So if column H is less than 100% we then have 25% of the total of B reduced.
Thus if column J is less than 80% we then reduce by 25% of the total of B reduced.

I have put together a table below that shows the end results which have been manually calculated.

Book1
ABCDEFGHIJKLMNO
1before deductions
2Player nameMoney earnedMetNot metTotalreg not metReg as Percentif under 100% reduce 25% off totalRemaining balance after 25%Qualityif under 80% reduce 25% off totalremaining balance After 80% ruleTotal deductionsTotal remaining payable
3Bob$365.503030100.00%Equation needed#VALUE!100Equation needed#VALUE!H + K#VALUE!
4Sally$579.005050100.00%Equation needed#VALUE!100Equation needed#VALUE!H + K#VALUE!
5Fred$716.00246183.33%Equation needed#VALUE!33.33Equation needed#VALUE!H + K#VALUE!
6Albert$180.5000000.00%Equation needed#VALUE!0Equation needed#VALUE!H + K#VALUE!
7
8
9Player nameMoney earnedMetNot metTotalreg not metReg as Percentif under 100% reduce 25% off totalRemaining balance after 25%Qualityif under 80% reduce 25% off totalremaining balance After 80% ruleTotal deductionsTotal remaining payable
10Bob$365.503030100.00%0$356.501000$365.500$365.50
11Sally$579.005050100.00%0$579.001000$579.000$579.00
12Fred$716.00246183.33%179$537.0033.33179$537.00358$358.00
13Albert$180.5000000.00%45.12$135.38045.12$135.3890.24$90.26
14
Sheet1
Cell Formulas
RangeFormula
I3:I6,I12:I13I3=SUM(B3-H3)
L3:L6,L10:L13L3=SUM(B3-K3)
N3:N6,N10:N13N3=SUM(B3-M3)
M10:M13M10=SUM(H10 + K10)



Any Support on this would be greatly appreciated.
 

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 There

Something like below...

Book1
ABCDEFGHIJKLMN
1Player name Money earned MetNot metTotalreg not metReg as Percent if under 100% reduce 25% off total Remaining balance after 25% Qualityif under 80% reduce 25% off total remaining balance After 80% rule Total deductions Total remaining payable
2Bob$ 365.503030100%0$ 365.50100%0$ 365.50$ -$ 365.50
3Sally$ 579.005050100%0$ 579.00100%0$ 579.00$ -$ 579.00
4Fred$ 716.00246183%$ 179.00$ 537.0033.33%$ 179.00$ 537.00$ 358.00$ 358.00
5Albert$ 180.5000000%$ 45.13$ 135.380%$ 45.13$ 135.38$ 90.25$ 90.25
Sheet1
Cell Formulas
RangeFormula
H2:H5H2=IF(G2<1,B2*0.25,"0")
I2:I5I2=SUM(B2-H2)
K2:K5K2=IF(G2<1,B2*0.25,"0")
L2:L5L2=SUM(B2-K2)
M2:M5M2=SUM(H2+K2)
N2:N5N2=SUM(B2-M2)
 
Upvote 0

Forum statistics

Threads
1,214,812
Messages
6,121,693
Members
449,048
Latest member
81jamesacct

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