Commission Tracker

Greysoul

New Member
Joined
Dec 31, 2010
Messages
4
I tried to come up with a title to explain what i'm trying to do but that didn't work. I'm working on a commission tracker for accessory sales in my retail locations. If the accessories sold exceed $100 for the day, 10% of total sold are put into a pot and split evenly between reps. Obviously you can tell the employees that work here on a day to day basis are sporadic. This is my data table. I've done this several ways now and keep running into issues. It seems like every way i try to do it, i can't figure out the logic behind it. It's like i have to check to see first if said name exists in the row..then count how many people worked that day and divide the amount by how many worked, and then multiple it by 10%. Not only that but i have to add all the rows of the month. Can this even be done in one cell for the output? If you need more info please ask..thanks!

The end result should yield John @ 10.48 commissions for 11/16 + 11/17.


DateAmountEmp 1Emp 2Emp 3
11/16/16$145.00JohnJoeJerry
11/17/16$113.00JohnJoe
11/18/16$45.00JohnJerry
11/19/16$75.00JoeJacob

<tbody>
</tbody>
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
This is not in one cell, but maybe can help you get started. You can filter on Date to get the 11/16 and 11/17 for John.

Excel 2010
ABCDEFGHIJ
10DateAmountEmp 1Emp 2Emp 3Comm/RepJohnJoeJerryJacob
1111/16/2016145JohnJoeJerry4.834.834.834.83-
1211/17/2016113JohnJoe5.655.655.65- -
1311/18/201645JohnJerry2.252.25- 2.25-
1411/19/201675JoeJacob3.75- 3.75- 3.75
15Sum16.4812.7314.237.083.75
Sheet1
Cell Formulas
RangeFormula
F15=SUBTOTAL(9,F11:F14)
G15=SUBTOTAL(9,G11:G14)
G11{=SUM(IF($C11:$E11=G$10,$F11,0))}
H15=SUBTOTAL(9,H11:H14)
H11{=SUM(IF($C11:$E11=H$10,$F11,0))}
I15=SUBTOTAL(9,I11:I14)
I11{=SUM(IF($C11:$E11=I$10,$F11,0))}
J15=SUBTOTAL(9,J11:J14)
J11{=SUM(IF($C11:$E11=J$10,$F11,0))}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Upvote 0
yeah i was trying to avoid so many cells because i actually have 3 stores side by side that have to be done. I see that it may not be a possible feat...i will tinker with that you've shown me and see what i can do. Thanks Lloyd
 
Upvote 0

Forum statistics

Threads
1,215,847
Messages
6,127,264
Members
449,372
Latest member
charlottedv

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