Hi
I am attempting to write a report for these tables:
Dates Table Call Table Old Call Table
MonthStart CallStartDate CallStartDate
MonthEnd CallCode CallEndDate
StaffMember CallCode
CallType StaffMember
CallType
The dates table identifies the dates of our months, the when we have a new call it is entered into the call table with a start date. When the call is completed it is moved to the OLD Call table and an EndDate is assigned.
We have a SQL Server view setup with a Union join between both the Call table and the old call table. Leaving us with the fields CallStartDate, CallEndDate, CallCode, StaffMember and CallType.
I wish to write a report grouped by StaffMember and CallType which shows all open calls for these groupings each month, for the past 24 months. If calls are still open (some calls can last years) then they should be shown each month since they were opened.
I am a little lost on how can restrict the data for each month.
Any advice would be much appreciated
Regards B
I am attempting to write a report for these tables:
Dates Table Call Table Old Call Table
MonthStart CallStartDate CallStartDate
MonthEnd CallCode CallEndDate
StaffMember CallCode
CallType StaffMember
CallType
The dates table identifies the dates of our months, the when we have a new call it is entered into the call table with a start date. When the call is completed it is moved to the OLD Call table and an EndDate is assigned.
We have a SQL Server view setup with a Union join between both the Call table and the old call table. Leaving us with the fields CallStartDate, CallEndDate, CallCode, StaffMember and CallType.
I wish to write a report grouped by StaffMember and CallType which shows all open calls for these groupings each month, for the past 24 months. If calls are still open (some calls can last years) then they should be shown each month since they were opened.
I am a little lost on how can restrict the data for each month.
Any advice would be much appreciated
Regards B