Adding a "Entire Field Avg" to a query/report

G

Guest

I have a database of crop production information for farm fields. I am
working on creating a query/report that shows all of the farm fields with
their avg. yields and sum of acres within each farm field. I would like to
add an "Entire Group" column into the query/report so that I can also display
the average yield and total acres for all of the fields combined. Is this
possible?

Thanks!
Bryan
 
A

Al Camp

Bryan,
Does one FarmName have more than one FarmField associated with it. I'm
assuming so...
So, your report will be grouped by FarmName, and list each associated
FarmField with Acreage and Yield.
Individual FarmName totals can be calculated in the FarmName Footer by
Sum(Acreage) and Avg(Yield)

Use the ReportFooter to Sum(Acreage) for all FarmNames, and the
Avg(Yield) for all FarmNames. That in itself is the equivalent of "All
Groups."
 

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

Top