Okay, suppose that we want to calculate a weighted
grade average based on the following data list:
{"Grade","Weight"
;89,7
;90,3
;83,6
;76,5}
Of course, a weighted average is calculated by
dividing the sum of the products of the grades
and their weights by the sum of the weights;
however, a PivotTable won't allow you to
calculate the individual products needed for the
numerator of this ratio. Even with the use of a
Calculated Field all of the Grades and all of the
Weights will be summed prior to multiplication.
In order to circumvent this limitation you must
include the product of Grade and Weight in your
data list. Thus, your revised data list would
become:
{"Grade","Weight","Grade*Weight"
;89,7,623
;90,3,270
;83,6,498
;76,5,380}
Now you can create a Calculated Field using the
Insert | Calculated Field... menu command. The
formula would be: ='Grade*Weight'/Weight.
Use this new field (preferable renamed as
"weighted average") in the DATA area of your
PivotTable.
P.S.: The weighted average for this data set is
84.33.