Multiple If statements

NYEXCEL1

Board Regular
Joined
Apr 17, 2013
Messages
123
I am trying to build a simple bonus conditions model using the following scenarios. I am having an issue calculating when conditions cross over multiple "bucket" levels using IFS and AND/OR conditions

Current Revenue $98

Bucket 1: $0 - $99 12%
Bucket 2: $100 - $199 8%
Bucket 3: $200 - $300 4%

Based on the above, which the current revenue level< the person would get ($98*12%) as a bonus. What i am trying to figure out is if the current revenue is $150 how can i calculate the first $99 at 12% then the next $51 at 8%. Also looking to the future same question but if current revenue is at $250 what is the formula to calculate over all three buckets?

Appreciate the forums help and thank you in advance.
 
No, if the endpoints are different, then it's not the same, but that's fine.(y)
and I'm not talking about fractions between 99-100, or 199-200...(anything over 99)...
And I like your formula approach.
Yeah, when I posted the formula with the updated endpoints in post 7, I accidentally updated the "gap" too, not just endpoints (my bad), i.e.
Rich (BB code):
=(MAX(A1-199,0)*0.04)+(MIN(MAX(A1-99,0),99)*0.08)+(MIN(A1,99)*0.12)

When I went back and corrected it, i.e.
Rich (BB code):
=(MAX(A1-199,0)*0.04)+(MIN(MAX(A1-99,0),100)*0.08)+(MIN(A1,99)*0.12)
it returns the exact same results as yours.

jtakw in Post #4Joe Revised Post #7
98​
11.76​
11.76​
150​
15.96​
15.96​
250​
21.92​
21.92​
100​
11.96​
11.96​
101​
12.04​
12.04​
200​
19.92​
19.92​
199​
19.88​
19.88​
 
Upvote 0

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.

Forum statistics

Threads
1,215,268
Messages
6,123,969
Members
449,137
Latest member
yeti1016

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