SumIf formula - can't get it right.....

rfinnegan

Board Regular
Joined
Mar 15, 2005
Messages
173
Office Version
  1. 365
Platform
  1. Windows
Hi All:

I’m trying to create a formula for a bonus payout. The formula needs to take into account 2 payout events and also incorporate a payout factor.

Event A is worth up to $1500. Event B is worth up to $900. Each bonus is paid based on the completed percentage of the event. If the combined percentage is 100% or higher, the total payout is multiplied by a factor of 1. If the combine percentage is less, so is the multiplication factor.

For example if event A was completed 80% and event B was completed 50%, their combined completion would be 130%. That would make them eligible for the highest multiplication factor (1), which is paid on $1200 for event A (1500 * .8) and $450 (900*.5). The end bonus is $1650 (1200+450)*1.0.

If event A was completed 50% and event B was completed 20%, their combined completion would be 70%. That would make them eligible for a lower multiplication factor (0.9), which is paid on $750 for event A (1500 * .5) and $180 (900*.2). The end bonus is $837 (750+180)*.9

Here’s the English version of the formula I’m trying to write.

If E6 is greater than 1, multiply C6 by I6 and add it to the sum of D6 *J6, If E6 is greater than 0.75 but less than 1, multiply C6 by I6 and add it to the sum of D6 *J6 THEN multiply that by .95. If E6 is greater than 0.49 but less than 0.75, multiply C6 by I6 and add it to the sum of D6 *J6 THEN multiply that by .90. If E6 is greater than 0.24 but less than 0.49, multiply C6 by I6 and add it to the sum of D6 *J6 THEN multiply that by .85. If E6 is less than 0.24, multiply C6 by I6 and add it to the sum of D6 *J6 THEN multiply that by .80.

The first part of my SUMIF formula worked, but as I tried to add to it, it fell apart….
=SUMIF(E6,">1",D6)*J6+C6*I6

Thank in advance.
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
You amaze me. Thanks again. I was a million miles away from that solution.
 
Upvote 0

Forum statistics

Threads
1,224,526
Messages
6,179,322
Members
452,906
Latest member
Belthazar

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