thermalman
Technical User
Hi,
I am using Crystal Reports XI and I am pulling data from a remote SQL Server. I have a report that reports on the Calls that my Company performs, I also have some calculations at the report footer that calculate the total No of Calls, The Total Number of Calls Missed Response & Percentage Missed, The total number of Calls Missed Fix and Percentage Missed.
The problem I am having is occurring when I am trying to count the results of a formula that calculates when we have missed a Fix on a Call.Because a call can have many Work Orders and the formula is counting every Work Order my results are incorrect.
I have a formula like this:
I only want to count the Last Work Order which should have a status of "Fixed" but my calculation is counting every Work Order Record.
Can anybody advise how I can only get the formula to count if the TimeOut is less than the Offsite Time and the Work Order is "Fixed"
Regards
Thermalman
I am using Crystal Reports XI and I am pulling data from a remote SQL Server. I have a report that reports on the Calls that my Company performs, I also have some calculations at the report footer that calculate the total No of Calls, The Total Number of Calls Missed Response & Percentage Missed, The total number of Calls Missed Fix and Percentage Missed.
The problem I am having is occurring when I am trying to count the results of a formula that calculates when we have missed a Fix on a Call.Because a call can have many Work Orders and the formula is counting every Work Order my results are incorrect.
I have a formula like this:
Code:
IF {ABCDWorkOrderView.Offsite}<={ABCDWorkOrderView.TimeOut}
AND
({ABCDWorkOrderView.FixedorResolved}="FIXED")THEN
"Y"
ELSE
"N"
Can anybody advise how I can only get the formula to count if the TimeOut is less than the Offsite Time and the Work Order is "Fixed"
Regards
Thermalman