Weighted Average - Access DB

  • Thread starter Thread starter Guest
  • Start date Start date
Kathie said:
Can you calculate a weighted average in access?

Yes.

It's not the easiest thing to do, but it is possible. For example, given a
table with two columns, Value and WF (weighting factor), you would do this:

select sum([Value]*[WF])/(select sum([WF]) from table) as
WeightedAverage from table
 
Back
Top