Percentage Question

iddon17

New Member
Joined
Feb 13, 2018
Messages
3
I'll try to keep it simple:

I have people doing work for me. Clients pay them directly and then they pay me a fee.

They pay 20% on the first 10 clients
10% on clients 11-20
Then 5% on any over 20

How do I get excel to calculate this for me.

I obviously need to calculate how many clients they have which I can do. Then calculate the %.

Its the change from 20% to 10% I can't do.
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
So lets say 15 clients all paying my guy £100

My guy then has to pay me 20% for the 1st 10 clients so 20% of £1000 is £200

Then 10% on the other 5 so £50

Just struggling to get it to know when my guys go over 10 clients and reduce the % for those over 10
 
Upvote 0
Here is a simple clear way for you to set it up

formula in E2: =MAX(0,H$1-$A2-SUM(E3:E$5)) and drag down

formula in F2: =E2*$H$2*C2 and drag down

formula in H3: =SUM(F2:F4)

then you just need to change cells H1 and H2 and you get the results update in H3



Excel 2010
ABCDEFGHI
1LHPercBreakDownFees15Number of Clients
201020%10£ 200.00£ 100.00Each Client Pays
3102010%5£ 50.00£ 250.00Total Fee to Pay to me
420~5%0£ -
Sheet5
 
Last edited:
Upvote 0
fyi: There is also a way to do it all in 1 formula. you can do (based upon above layout)

=SUMPRODUCT(FREQUENCY(ROW(INDIRECT("1:"&H1)),{10,20}),{0.2;0.1;0.05})*$H$2
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,849
Members
452,361
Latest member
d3ad3y3

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