mugman17
05-28-2002, 09:28 AM
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.
|
View Full Version : Count and average mugman17 05-28-2002, 09:28 AM 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 05-28-2002, 09:37 AM 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).] |