Forum Discussion
fzn365
Jul 17, 2021Copper Contributor
Commission calculation based on variable targets
Hello Excel Masters and Experts, I am stuck in a formula, i need your help to solve it. I'm attaching an excel sheet and all the information has been written on it. (cOMMISSION CAL.xlsx) Looking f...
- Aug 20, 2023
I'm not aware of a built-in way to do that. You might create the following code in the ThisWorkbook module in the Visual Basic Editor:
Private Sub Workbook_Open() Me.Windows.Arrange ArrangeStyle:=xlVertical End Sub
You'll have to save the workbook as a macro-enabled workbook (*.xlsm) and allow macros when you open it.
fzn365
Jul 17, 2021Copper Contributor
HansVogelaar,
Let say, The target of person A is 500 units, and he sold 650 units, the commission will be in excess (150 units). and commission will be calculated in the 3rd yellow highlighted column (column name in the sheet is (Comm %).
Person B, has a target of 833 units to sell, he sold 751, so no commission
another example of person B, target of person B is 833 units, he sold 945, so his commission will be on (945-833) 112 units
Target Brackets are mentioned in the sheet are below.
Commission Benchmark Commission %
Target unit + 250 surplus 2
Target unit + 500 surplus 3
Target unit + 750 surplus 4
Target unit + 1000 surplus 5
Target unit + 1500 surplus 5.5
Let say, The target of person A is 500 units, and he sold 650 units, the commission will be in excess (150 units). and commission will be calculated in the 3rd yellow highlighted column (column name in the sheet is (Comm %).
Person B, has a target of 833 units to sell, he sold 751, so no commission
another example of person B, target of person B is 833 units, he sold 945, so his commission will be on (945-833) 112 units
Target Brackets are mentioned in the sheet are below.
Commission Benchmark Commission %
Target unit + 250 surplus 2
Target unit + 500 surplus 3
Target unit + 750 surplus 4
Target unit + 1000 surplus 5
Target unit + 1500 surplus 5.5
fzn365
Jul 17, 2021Copper Contributor
Commission Benchmark
Target unit + 250 surplus - Commission %2
Target unit + 500 surplus - Commission %3
Target unit + 750 surplus - Commission %4
Target unit + 1000 surplus - Commission %5
Target unit + 1500 surplus - Commission %5.5
Target unit + 250 surplus - Commission %2
Target unit + 500 surplus - Commission %3
Target unit + 750 surplus - Commission %4
Target unit + 1000 surplus - Commission %5
Target unit + 1500 surplus - Commission %5.5
- HansVogelaarJul 17, 2021MVP
Could you be so kind to answer the question that I asked?
- fzn365Jul 17, 2021Copper ContributorThe answer of Q1: When they sell up to 250 units above target,
The answer of Q2: Under the Commission Calculations section there is a column (sold amount), the percentage will be applied to that.- HansVogelaarJul 17, 2021MVP
Thank you. So the sales rep gets 5.5% commission if they sell between 1000 and 1500 units above target.
But what if they sell more than 1500 units above target? Does it remain 5.5%?