Help with If function

mrosso2013

New Member
Joined
Jul 25, 2014
Messages
3
So in general we are trying to calculate commission. I make 2% on anything thats is 15000 and less. Once I hit 15001 I make 5% on that.

I cannot figure out the correct formula for the following. trying to figure out commission

B3 = 16000

I need a formula thats tells me if B3 is less than or equal to 15000 I want it to calculate 2% of B3, with the max being 15000 which it can be calculated off of.

If it is greater than 15,000 than i need whatever is over the 15000 gets a 5% commission.

So in general we are trying to calculate commission. I make 2% on anything thats is 15000 and less. Once I hit 15001 I make 5% on that.
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Hi and welcome to the forum.

If the figure on which commission is to be calculated is in B3 then in whichever cell you want the commission enter: =min(15000,B3)*2%+max(0,B3-15000)*5%

note that if B3 is empty the formula will return 300, to avoid this use: =if(B3<>"",min(15000,B3)*2%+max(0,B3-15000)*5%,"")

Hope this helps.
 
Upvote 0

Forum statistics

Threads
1,216,303
Messages
6,129,984
Members
449,549
Latest member
birdguy_1930

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