Need help to work out formula

Lmaonade

Board Regular
Joined
Jan 5, 2018
Messages
52
Hi,

I have this spreadsheet.

Untitled7878.png


I want this cell to work out how much commission is calculated.

If the "GM this month" is equal or higher than the number in the 4 or 5 week month row (depending on whether the cell E19 is 4 or 5) then I want the cell to give me E20* 10% if it is Equal or higher than the 100% mark, 12.5% if equal or higher than the 125% mark, 15% if equal or higher than the 150% mark and 20% if equal or higher than the 200% mark. If it doesn't meet any of these targets then I'd want it to return 0.

For example: for the amount in the image (8400) I would want this to see that it's a 4 week month, and then see that it falls into the 100% colomn as it's above the 100% mark but below the 125% mark, so I'd want it to calculate 8400*10%

And another example: If it said 13000 and E19 was 5 I'd want it to return the value of 13000*15%

I'm not sure if this is possible. I'm not an expert by any means with formula.

I appreciate any help on this.

Thanks,
Andy
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
This is what I came up with:


Book1
CDEFGHI
5
6Consultant Name:Andy
7Salary:17000
8Multiple5
9
10
11Monthly Calculator
12Percentage of Target100%125%150%200%
13Weekly1700212525503400
144 Week Month680085001020013600
155 Week Month8500106251275017000
16Quarterly22100276253315044200
17Annually85000106250127500170000
18
194 or 5 Week Month4
20GM This Month8400
21Commission Threshold MetYES
22Gross Commission Amount (If YTD Met)840
23
Sheet1
Cell Formulas
RangeFormula
E21=IF($E$20>=INDEX($E$11:$H$15,$E$19,1),"YES","NO")
E22=IF($E$21="NO","",$E$20*CHOOSE(MATCH($E$20,INDEX($E$11:$H$15,$E$19,),1),0.1,0.125,0.15,0.2))


WBD
 
Upvote 0

Forum statistics

Threads
1,215,632
Messages
6,125,913
Members
449,274
Latest member
mrcsbenson

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