Formula Help

daneagle22

New Member
Joined
Apr 5, 2011
Messages
3
I am trying to calculate commission.<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p>
Our sales team has to have 10 demo points to get $20.00, for each additional point after 10 they get $3.00.<o:p></o:p>
<o:p></o:p>
I am trying to write a formula that does the following:<o:p></o:p>
Column A2 is the list of employees<o:p></o:p>
Column M is the sum of columns D and F<o:p></o:p>
<o:p></o:p>
If such an such employee (column A) has (Column M) greater than 10 points then they get $20.00 plus $3.00 for each additional point beyond 10.<o:p></o:p>
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Welcome to MrExcel board....

try this
Excel Workbook
MN
1Points
21520
33526
450
54029
Sheet2
Excel 2003
Cell Formulas
RangeFormula
N2=IF(M2<10,0,IF(AND(M2>9,M2<20),20,20+INT((M2-10)/10)*3))
 
Upvote 0
Thanks!

How do I get the employees name to pull into that formula, as their are about 20 different employees, and I want to get a dollar amount for each employee?

Column M is where the points for each employee are listed for each demo/sale. Their could be the same employee on the sheet 10 times, or just two times. I guess what I am trying to say is I want to be able to come up with a amount that each employee should receive by adding up all their points they received in column M, and have it give me a number for each employee.

Thank you,
 
Upvote 0
Thanks!

How do I get the employees name to pull into that formula, as their are about 20 different employees, and I want to get a dollar amount for each employee?

Column M is where the points for each employee are listed for each demo/sale. Their could be the same employee on the sheet 10 times, or just two times. I guess what I am trying to say is I want to be able to come up with a amount that each employee should receive by adding up all their points they received in column M, and have it give me a number for each employee.

Thank you,

Sounds like you want a pivot table
 
Upvote 0

Forum statistics

Threads
1,224,587
Messages
6,179,738
Members
452,940
Latest member
Lawrenceiow

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