B
Boz
We are scheduling appointments for trucking companies to arrive with freight.
I have a table that we enter the scheduled date in one field and the
scheduled time in another. If the carrier is bringing more than one vendor
on each truck, we use the same appointment time. Unfortunately, when we run
a query to see how many appointments we have each day, it counts each record.
THis is how it displays:
Appointment Date Appointment Time Appointment Number
Vendor
04/27/07 10:15 am 123
ABC
04/2707 12:15 am 124
DEF
04/27/07 12:15 am 125
GHI
04/28/07 0:00 am 126
JKL
I need it to show the information like this:
Appointment Date Appointments
04/27/07 2
04/28/07 1
I can the the query to just show me totals, that isn't the problem.
Unfortunately it will show me having 3 appointments on 04/27/07 and 1 on
4/28/07. I guess what I'm trying to say is that I need the query to count
unique times.
I have a table that we enter the scheduled date in one field and the
scheduled time in another. If the carrier is bringing more than one vendor
on each truck, we use the same appointment time. Unfortunately, when we run
a query to see how many appointments we have each day, it counts each record.
THis is how it displays:
Appointment Date Appointment Time Appointment Number
Vendor
04/27/07 10:15 am 123
ABC
04/2707 12:15 am 124
DEF
04/27/07 12:15 am 125
GHI
04/28/07 0:00 am 126
JKL
I need it to show the information like this:
Appointment Date Appointments
04/27/07 2
04/28/07 1
I can the the query to just show me totals, that isn't the problem.
Unfortunately it will show me having 3 appointments on 04/27/07 and 1 on
4/28/07. I guess what I'm trying to say is that I need the query to count
unique times.