averages

T

Tyler

I am designing a database for a volleyball team. We are keeping a great deal
of stats and I want to be able to enter the info, run queries and reports.
In these queries and reports, I need to determine averages and percentages.

My question is: How is this accomplished? Can it be accomplished in the
report only, or is a query necessary?

Thanx
Tyler
 
D

Duane Hookom

It is fairly easy to create averages, sums, max, min, etc in group or report
footers or headers. For instance you might be able to use a control source
like:
=Avg([Kills])
or
=Sum([Blocks])
 
Top