I have a report section where it calculate the TOTAL column by dividing the total of "Call Opportunities (PW)" and "LCAs Accepted(PW)". For example, 735.0 / 67 should be 9.1, but it is averaging it. I have to code below, but not sure how to change the calculation as mentioned above.
=iif(Fields!Lower_Cost_Alternative_Metrics.Value="Call Opportunities (PW)",
Sum(Fields!CM.Value+Fields!JAX.Value+Fields!OKC.Value+Fields!OP.Value+Fields!WAU.Value+Fields!MKE.Value),
iif(Fields!Lower_Cost_Alternative_Metrics.Value="LCAs Accepted(PW)",
Sum(Fields!CM.Value+Fields!JAX.Value+Fields!OKC.Value+Fields!OP.Value+Fields!WAU.Value+Fields!MKE.Value),
iif(Fields!Lower_Cost_Alternative_Metrics.Value="Acceptance Rate (PW)",
Sum(Fields!CM.Value+Fields!JAX.Value+Fields!OKC.Value+Fields!OP.Value+Fields!WAU.Value+Fields!MKE.Value)/6,
Sum(Fields!CM.Value+Fields!JAX.Value+Fields!OKC.Value+Fields!OP.Value+Fields!WAU.Value+Fields!MKE.Value)/6)))