I have 2 main pillar employee numbers and sales agent numbers. Each employee can have 1 or more sales agents, And under each special agent, each of these sales agents has a fixed bonus split. Now, I am trying to calculate a fourth column Final_bonus_split , the value of this column is the weight of its respective agent bonus per employee number. For example, as follows: I am currently using this 2 supportive pillars, but It was possible to use only one single column to do so. This is what you are looking for:
Emp # Sales_Agent #Bonus_Split Final_bonus_split 1000 123 10% = 10 / (10 + 25 + 30) = 15% 1000 345 25% = 25 / (10 + 25 +30) = 38% 1000 987 30% = 30 / (10 + 25 + 30) = 47% 2000 123 10% = 10/10 = 100% 3000 345 50% = 50 / (50 + 15) = 77% 3000 647 15% = 15 / (50 + 15) = 23% 4000 634 40% = 40/40 = 100%
= C2 / SumIf ($ A $ 2: $ A $ 8; A2; $ C $ 2: $ C $ 8)
Comments
Post a Comment