Weighted Average?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a weighted average function, whereby I could create a textbox in the
Footer section that would give me the average of one column, weighted by
another?
If not, is "sumproduct" an available function?

Thanks!
RG
 
I'm not sure just what you are trying to do, but you can put an unbound text
box into the report footer (or a group footer) with an expression as its
Control Source:
=Avg([SomeField]) * Avg([OtherField])
or whatever exactly the weighting number is (the meaning of "weighted by
another" is unclear). Note that you can't use a calculated control in such
a situation. If Avg([SomeField]) is already in a text box, you still need
to use the expression in the weighted text box. You can't refer to the
calculated control itself.
 
RussG said:
Is there a weighted average function, whereby I could create a textbox in the
Footer section that would give me the average of one column, weighted by
another?
If not, is "sumproduct" an available function?


I believe the usual weighted average is:

Sum(amt * wgt) / Sum(wgt)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top