IF formula not working for commision calculation

excel_2009

Active Member
Joined
Sep 14, 2009
Messages
318
Hi excel gurus,

I have a bit of a dilemma in regards to an IF formula, here is a breakdown of the issue i am facing:

I have a commission structure:

£0-12,000 = 10%
£12,001 – £24,000 = 15%
£24,001+ = 20%

This is worked out on what we have done in the month – but isn’t as simple as one fixed percentage. Let me explain:

So If I bill £14,000 in one month, I earn 10% on the first £12,000 and 15% on the remaining £2,000. So I’ll get £1,500 commission. Or if I do £25,000 in one month, I’ll earn 10% on the first £12,000 (£1,200) plus 15% on the next 12,000 (£1,800) plus 20% on whatever I have left over £24,000 (£200). So all in all, I will have made £3,200.

The problem I have is that I can’t seem to do multiple “IF” formulas. I thought I had fixed it with =IF((J3*1)<12001,(J3*10%),IF(J3*1)<24001,(J3*15%)) but unfortunately it doesn't work as I cant seem to add a third IF rule.

Please can someone help me? perhaps there's a far more simpler method?

Thank you!

:)
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Hi Andrew,

I have attempted to use this function however my figures are wrong, please can you help?

Code:
=SUMPRODUCT(--(J3<{12000;24000;24001}),(J3*{0.1;0.15;0.2}))


For £14,000 it is showing as £4,900.00

but it should show £1500 (If I bill £14,000 in one month, I earn 10% on the first £12,000 and 15% on the remaining £2,000.)

Thank you

:)
 
Upvote 0
Alternatively (changing A1 to wherever the 14000 is)

=IF(A1<12001,0.1*A1,IF(A1<24001,12000*0.1+(A1-12000)*0.15,12000*0.1+12000*0.15+(A1-24000)*0.2))
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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