Multiple IF's for a report

CovMatt

New Member
Joined
Jun 30, 2017
Messages
21
Hi All

I'm trying to create a comms calculation but struggling to bring to IF's together?

Scenario

If a salesman generates upto £ 9,999 then they get 25% of this, however if they go above £ 9,999 then they get (£9999*25%) + 40% of everything above that figure?

Anyone able to help?

Thanks in Advance
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Try:
Code:
=(0.25*A1)+(0.4*MAX(0,A1-9999))
Where A1 is the amount the salesman has generated, change to suit.
 
Upvote 0
Try this (for an amount in cell A1):
Code:
=(A1*0.25)+(MAX(0,A1-9999)*0.15)
 
Upvote 0
Note. I see that Jack and I had a little different interpretation of your question, as it is not quite clear.
For amounts above 9999, should they get a total of 40% or 65% (that is 40% on top of the initial 25% for that amount)?

Perhaps an actual example would help clear up exactly what you are after.
If the amount was 20000, should they get 6500.15 or 9000.40?
 
Last edited:
Upvote 0
Thanks Jack, Joe

If a salesman generated £ 9999 GP then we would get 25% of this as comms

If a salesman generated anything above £ 9999 GP then he we would receive the initial 25% upto £ 9999 then 40% of everything above £ 9999 as well

SM would receive the following

£ 5000 = £ 1,250
£ 9999 = £ 2,499.75
£ 15000 = £ 4,499.75
£ 20000 = £ 6,499.75




Hope this helps?
 
Upvote 0

Forum statistics

Threads
1,223,230
Messages
6,170,883
Members
452,364
Latest member
springate

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