A
Access To Access
Good Morning,
I have an annoying thing i am trying to sort. I am creating a report using
access to format the data. I am trying to give an hourly breakdown of
results. In my data i have a "CallDateTime" which records data in a
DD/MM/YYYY HH:MM:SS format. I have written some VBA which will now present
the data in an hourly time slot, for example 13/03/2007 16:30:44 would now
show as "16:00:00 - 16:59:59". I then have a sum and count happening in other
columns to give me the data i need. Now the problem i have is that we don't
always call people at all hours of the day, and so i am getting patches and
gaps between hours zones, which throws my reporting out. What i need is the
full hourly spectrum (that is 9:00:00 to 22:59:59 - Broken down into
individual hours segments) and if there is no activity showing then it
displays zeros.
So for example at the moment i have:
Call Hour Contacts Sales
09:00:00 - 09:59:59 16 2
16:00:00 - 16:59:59 3 0
What i need is:
Call Hour Contacts Sales
09:00:00 - 09:59:59 16 2
10:00:00 - 10:59:59 0 0
11:00:00 - 11:59:59 0 0
etc
Can you help me....
I have an annoying thing i am trying to sort. I am creating a report using
access to format the data. I am trying to give an hourly breakdown of
results. In my data i have a "CallDateTime" which records data in a
DD/MM/YYYY HH:MM:SS format. I have written some VBA which will now present
the data in an hourly time slot, for example 13/03/2007 16:30:44 would now
show as "16:00:00 - 16:59:59". I then have a sum and count happening in other
columns to give me the data i need. Now the problem i have is that we don't
always call people at all hours of the day, and so i am getting patches and
gaps between hours zones, which throws my reporting out. What i need is the
full hourly spectrum (that is 9:00:00 to 22:59:59 - Broken down into
individual hours segments) and if there is no activity showing then it
displays zeros.
So for example at the moment i have:
Call Hour Contacts Sales
09:00:00 - 09:59:59 16 2
16:00:00 - 16:59:59 3 0
What i need is:
Call Hour Contacts Sales
09:00:00 - 09:59:59 16 2
10:00:00 - 10:59:59 0 0
11:00:00 - 11:59:59 0 0
etc
Can you help me....