How to payout based on Net Income Range

ThatExcelLife

New Member
Joined
Nov 2, 2017
Messages
18
Hey Team!

Im stuck on a excel problem. Wonder if someone could give me some advice?

Its a simple scenario, but Im having trouble with the function.

Lets say you are going to get paid out based on the performance if your company. So any net income over $425,000 but under $725,000 you get 100% of it. Any additional NI over 725,000 you get 50% if it (also including the 100% of the difference between $425,000 and $725,000).

I would like to layer it as such....

1) Net Income419,000
2) 100% between 425,000-725,000?
3) 50% > 725,000?
4) Net Income after payout= 1 - 2 - 3

<tbody>
</tbody>

What would the formulas be for the 2nd/3rd row such that it pays out the proper amount?

Thanks for your help!
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
With Net income in B1:
B2: =MIN(MAX((B1-425000)*100%,0),300000)
B3: =MAX((B1-725000)*50%,0)

Edit: 1st formula was wrong
 
Last edited:
Upvote 0
WOAH @njimack, thank you a million times over! I spent so much time trynna make heads or tails over this simple, yet annoying problem.

Formula works great! Thanks for your not only thorough, but quick response!

This I why I love this forum. So helpful.

Thanks again, @njimack!
 
Upvote 0

Forum statistics

Threads
1,214,825
Messages
6,121,787
Members
449,049
Latest member
greyangel23

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