Formula to calculate tiered commission based on changing %

ITWORX

New Member
Joined
Aug 26, 2016
Messages
12
Office Version
  1. 365
Platform
  1. Windows
Hi, pls can i ask for assistance with below formula. I have attached screenshot on actual sheet.

=IF(B1>A3,B1*C3,IF(B1>A4,B1*C4,IF(B1>A5,B1*C5,IF(B1>A6,B1*C6,IF(B1>A7,B1*C7,IF(B1>A8,B1*C8))))))

Basically, when the value in yellow exceeds any amount in C3 - C8, i was hoping the formula would choose the corresponding rate in C3 - C8, however it seems stuck on only using 2.5% ( C3 ) in the output cell ( D3 ). I ideally would like it to move through the rate 2.5%, 5% etc as value in B1 exceeds values in a3 - a8. Hope makes sense
 

Attachments

  • SS of Excel Sheet.PNG
    SS of Excel Sheet.PNG
    13.4 KB · Views: 10

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
How about
Excel Formula:
=XLOOKUP(B1,A2:A8,C2:C8,0,-1)*B1
but you will need to add a row for 0, otherwise you'll get an error.
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,922
Messages
6,122,281
Members
449,075
Latest member
staticfluids

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