Meet more than one criteria then calculate %

LJH

New Member
Joined
Jul 11, 2020
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I need a formula to calculate the following:
Sales of 1st person >=£500
Sales of 2nd person >=£250
Sales of 3rd person >=£250
If all conditions met, then 1st person receives a bonus on the 2nd & 3rd sales. If sales criteria is only met by 1 person, then bonus only calculated on those individual sales.
In this example, no bonus is due as 1st person has not achieved £500
229.40
802.15
71.00

This one, however, does:
630.91
274.95

Hope that makes sense!
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
500​
229,40​
1​
250​
802,15​
bonus
250​
71,00​

C1 =If(B1>A1,"bonus","") and drag down.
D1 =Countif(C1:$C$3,"bonus")
 
Upvote 0
Thanks but instead of inserting the word bonus, I need it to calculate a %.
Do I have to have extra columns showing 500, 250, etc., or can it be incorporated in the formula?
 
Upvote 0
Can you be more specific and provide us details of expected result in an excel file using xl2bb
 
Upvote 0
Your description is not complete. Please provide a clear example with expected results with XL2BB
Try the following and edit it to meet your requirements.
Try using Excel's Data Evaluate Formula to review the formula.

T202007b.xlsm
ABCDE
1PersonThresholdActualBonus 12% or
2Person 1500.00630.91739.61739.61
3Person 2250.00274.95383.65383.65
4Person 3250.00125.000.000.00
5
1e
Cell Formulas
RangeFormula
D2:D3D2=ROUND((SUMPRODUCT(--($C$2:$C$4>=$B$2:$B$4))>1)*SUMPRODUCT(--($C$2:$C$4>=$B$2:$B$4),$C$2:$C$4)*$D$1+C2,2)
E2E2=AND(C2>B2,OR(C3>B3,C4>B4))*(SUMPRODUCT(--($C$2:$C$4>=$B$2:$B$4),$C$2:$C$4)*$D$1+C2)
E3E3=AND(C3>B3,OR(C4>B4,C2>B2))*(SUMPRODUCT(--($C$2:$C$4>=$B$2:$B$4),$C$2:$C$4)*D1+C3)
D4D4=(C4>B4)*ROUND((SUMPRODUCT(--($C$2:$C$4>=$B$2:$B$4))>1)*SUMPRODUCT(--($C$2:$C$4>=$B$2:$B$4),$C$2:$C$4)*$D$1+C4,2)
E4E4=AND(C4>B4,OR(C2>B2,C3>B3))*(SUMPRODUCT(--($C$2:$C$4>=$B$2:$B$4),$C$2:$C$4)*D1+C4)
 
Upvote 0

Forum statistics

Threads
1,215,047
Messages
6,122,858
Members
449,096
Latest member
Erald

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