Time Average

  • Thread starter Thread starter Owen
  • Start date Start date
O

Owen

Hello,

I have a report with a field that dispays the difference
between two dates (Date_Issued and Date_Answered), called
TimeOut.

I'd like to have a field that displays the average
difference displayed in the TimeOut fields.

TIA

Owen
 
Owen said:
I have a report with a field that dispays the difference
between two dates (Date_Issued and Date_Answered), called
TimeOut.

I'd like to have a field that displays the average
difference displayed in the TimeOut fields.

It not exactly clear what you're doing, but try using a text
box (in a group or the report footer section) with an
expression something along these lines:

=Avg(DateDiff("h", [Time In], [Time Out]))
 
Back
Top