Calculating an average in a report

B

Bailey

The current database I am working on has numbers entered into the form view.
I need those numbers and the average of the numbers to show in the report
view and when I print. Can someone help me with this?

Thank you
 
D

Duane Hookom

How far have you gotten? Can we assume you have the numbers displaying in
the detail section of the report. Add a text box to the report footer
section with a control source like:
=Avg([NumbersEnteredIntoFormView])
 
Top