Count and average (1 Viewer)

mugman17

Registered User.
Local time
Today, 01:29
Joined
Nov 17, 2000
Messages
110
I have a query where I need to see how many times the same delivery location appears between 2 dates. Then I need to average that. Any ideas? The dates are plugged in from a user through a form.
 

David R

I know a few things...
Local time
Yesterday, 19:29
Joined
Oct 23, 2001
Messages
2,633
Average it with what, itself?

I used two Totals queries:
1st Query:
DeliveryLocation, Group By
DeliveryLocation, Count
DateField, Where, Criteria: Between Forms.FormName.StartDate And Forms.FormName.EndDate

2nd Query:
CountOfDeliveryLocation, Avg.

[This message has been edited by David R (edited 05-28-2002).]
 

Users who are viewing this thread

Top Bottom