Average in Footer

Novice1

Registered User.
Local time
Today, 08:21
Joined
Mar 9, 2004
Messages
385
In my query I compute the wait time for each customer ([TimeIn]-[TimeOut]), using the Short Time format. Works fine.

In my report, in the Details footer, I computer the average wait time Avg([waittime]). Works fine.

In my Report footer, I want the average waittime for the report period. Again I use =Avg([waittime]). This doesn't work. I get a very high, inaccurate number (over 17 hours)

I checked the data to see if there was wrong info in either of the time in or time out fields. No problems.

Am I computing the average in the report footer incorrectly?
 
if on the detail the avg is correct, on the footer textbox control, just refer to your avg in your detail textbox:

your textbox control source on footer:

=[textboxOnDetail]

if you dont want to show textboxOnDetail, just make the control textboxOnDetail not visible.
 

Users who are viewing this thread

Back
Top Bottom