I am trying to build an SSRS report that has a column based on a percentage:
AgentSales AgentCommission Commission
20 .25 5
33 .12 3.96
46 .76 34.96
Totals: 99 [Unknown Calculation]
However, where I am having problems is I need to get what would be the totals column? How would I calculate the Commission so that the number shown in [Unknown Calculation] to display what I assume would be the average commission?
Commission column is simply AgentSales * AgentCommission. The total commission wouldn't be a SUM(Commission), but would more or less be the average commission for all agents.
[Unknown Calculation]
, or average commission? Row 1 commission is 25, row 2 is 15.68 and row 3 is 1,222.2, so is it safe to say[Unknown calculation]
value is (25 + 15.68 + 1,222.2) / 3 ? – Marko Radivojević