thermalman
Technical User
Hi I am using CR XI and an SQL BackEnd.
I have a report that shows All Completed Service Calls within a given Date range, which most of the time gives me the results that I want.However just recently i have noticed that if the Last WorkOrders TimeCompleted is outside of the date Range that I specify then it misses it off the report. for example
When I run the report at the beginning of January 2007 I only get from WorkOrder No 2 (WO_No) onwards as the 1st WorkOrder falls outside of my Date Range 01/12/06 00:00:01 and 31/12/06 23:59:59
I only want ALL of the call details to appear on the report when the TimeCompleted of last WorkOrder is within the Date Range Stated i.e. WorkOrder is the Last one (Maximum) and Followup = FALSE and CALL COMP = TRUE
but I just cannot get the report to show me these results.
Here is my Selection Criteria from my Actualy report
If this is not clear enough please let me know and I will try to explain it more.
Can anybody please advise of How I can accomplish this?
Many Thanks
Thermalman
I have a report that shows All Completed Service Calls within a given Date range, which most of the time gives me the results that I want.However just recently i have noticed that if the Last WorkOrders TimeCompleted is outside of the date Range that I specify then it misses it off the report. for example
Code:
Call WO_No Time Responded Time Completed Followup Comp
31544 1 30/11/06 09:30 30/11/06 11:40 TRUE FALSE
2 01/12/06 09:35 01/12/06 09:50 TRUE FALSE
3 04/12/06 16:00 04/12/06 10:20 TRUE FALSE
4 05/12/06 10:40 05/12/06 12:00 FALSE TRUE
I only want ALL of the call details to appear on the report when the TimeCompleted of last WorkOrder is within the Date Range Stated i.e. WorkOrder is the Last one (Maximum) and Followup = FALSE and CALL COMP = TRUE
but I just cannot get the report to show me these results.
Here is my Selection Criteria from my Actualy report
Code:
{WorkOrders.GBR_No} like "PF*" and
{WorkOrders.EngineerCode} like "F*" and
{WorkOrders.TimeCompleted} in {?StartDateTime} to {?EndDateTime} and
{LoggedCalls.CallComplete}
Can anybody please advise of How I can accomplish this?
Many Thanks
Thermalman