Averaging a summed field

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

Guest

Hi,
I have a report that I am creating that I would like to average the number
of days it takes for processing. The equation i'm using to create the
difference in dates is:
=Sum(DateDiff("d",[Date Complete],[Date Received])) and I would like to
average that. Can someone give me any help? Thanks in advance! Denise
 
Hi,
I have a report that I am creating that I would like to average the number
of days it takes for processing. The equation i'm using to create the
difference in dates is:
=Sum(DateDiff("d",[Date Complete],[Date Received])) and I would like to
average that. Can someone give me any help? Thanks in advance! Denise

On a Report you can put this expression into the Query upon which the
report is based; e.g. type

ProcessingTime: Sum(DateDiff("d",[Date Complete],[Date Received]))

Put this field on the report's detail section, and on the Footer
(either the Report Footer or the sorting-and-grouping section footer
if you want to average over a subset of the data) put

=Avg([ProcessingTime])

John W. Vinson[MVP]
 

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

Calculating an Average 11
Average of a Date Field 2
Averages 6
Excel Sumproduct 0
Average time from date time column? 3
Removing Zero's From Averages 8
Weighted averages 1
Calculate Average In Report? 1

Back
Top