CalgaryCR9
Technical User
Crystal Reports 9
My report has two groups. Group 1 being "Company.company_id". Group 2 is "service_call.service_call_id"
In group footer 2 I have the following correctly working formula {@callcount_1}:
if ({@convert_resolved_number})>0
then 1
It's not relevant but {@convert_resolved_number} is the following formula:
NumberVar TotalSec := datediff("s",NthLargest (1, {@Open Time}, {SERVICE_CALL.SERVICE_CALL_ID}),NthLargest (1, {@resolved }, {SERVICE_CALL.SERVICE_CALL_ID}));
I require a summary formula to be placed in group footer 1 (service_call.service_call_id) of {@callcount_1}.
Example data:
Service call id @callcount_1
1234 0
5678 1
8905 0
4445 1
Total 2
The distinctcount function gives me 4 which is not what I'm looking for. I've been staring at this too long and now need perspective from others. Any help would be greatly appreciated.
My report has two groups. Group 1 being "Company.company_id". Group 2 is "service_call.service_call_id"
In group footer 2 I have the following correctly working formula {@callcount_1}:
if ({@convert_resolved_number})>0
then 1
It's not relevant but {@convert_resolved_number} is the following formula:
NumberVar TotalSec := datediff("s",NthLargest (1, {@Open Time}, {SERVICE_CALL.SERVICE_CALL_ID}),NthLargest (1, {@resolved }, {SERVICE_CALL.SERVICE_CALL_ID}));
I require a summary formula to be placed in group footer 1 (service_call.service_call_id) of {@callcount_1}.
Example data:
Service call id @callcount_1
1234 0
5678 1
8905 0
4445 1
Total 2
The distinctcount function gives me 4 which is not what I'm looking for. I've been staring at this too long and now need perspective from others. Any help would be greatly appreciated.