Average of Totals

Flinn, Randal J 281 Reputation points
2022-02-17T15:05:13.183+00:00

Hello,

I have the following information generated in a report (from a query). The query groups data by the Fiscal Year and identifies all costs for that year. FTE is a calculation (=Cost/43.26/2080). How do I calculate the average of the groups and the FTE? I do want the average of the Group Totals not the average value that creates the total.

175360-image.png

Excel
Excel
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
2,084 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Ken Sheridan 2,846 Reputation points
    2022-02-19T22:28:37.83+00:00

    Assuming that Cost is a column in the query's result table, to average the monthly costs should be simply a call of the AVG operator against the Cost column in an unbound text box in the report footer:

    =AVG([Cost])

    To average the FTE values call the AVG function against the original expression:

    =AVG([Cost]/43.26/2080)


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.