Multiple IF conditions to calculate percentage value

angelocyrl

New Member
Joined
Feb 28, 2010
Messages
21
Hi!

Here is the values and conditions:

A
B
C
1
Customer
Target
Achieved
Commission
2
Bernard54882
3
Norbert13420
4
Maggie91472
5
Smilly33542

<tbody>
</tbody>

Coniditions:

Target < 15000 commission is '0'
Target > 15000 < 30000 is 2% calculate commission value
Target > 30000 < 45000 is 3% calculate commoission value
Target > 45000 < 60000 is 4% calculate commission value
Target above > 60000 is 5% calculate commission value

Display commission value in C column

Thank you in advance.
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Hi,

Not elegant but work...and drag down as needed

=IF(B2<15000,0,IF(B2<30000,B2*0.02,IF(B2<45000,B2*0.03,IF(B2<60000,B2*0.04,B2*0.05))))
 
Upvote 0

Forum statistics

Threads
1,214,377
Messages
6,119,183
Members
448,872
Latest member
lcaw

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