In Crystal Reports version 9, I'm working with a call tracking database (SQL/Oracle).
On my detail line (group=call id number), I have the following formula to tell me what time(s) the call was escalated to a vendor (note: it returns accurate data):
if {SERVICE_CALL_EVENT.SVC_CALL_EVENT_TYPE}="ESCALATE_VEND"
then {SERVICE_CALL_EVENT.ACTION_DT}
It will return various data and occurances. For eg:
call 123 may have nothing for vendor escalated and therefore report nothing for this report.
Call 234 may have only one occurance and return 2004-02-03 13:00:00
Call 456 may have four occurances and return four separate date and times.
I want the first occurance, if there is one. How do I get this? When the report is complete, I will have the detail section suppressed and will be working with the group footer information.
Thanks in advance.
On my detail line (group=call id number), I have the following formula to tell me what time(s) the call was escalated to a vendor (note: it returns accurate data):
if {SERVICE_CALL_EVENT.SVC_CALL_EVENT_TYPE}="ESCALATE_VEND"
then {SERVICE_CALL_EVENT.ACTION_DT}
It will return various data and occurances. For eg:
call 123 may have nothing for vendor escalated and therefore report nothing for this report.
Call 234 may have only one occurance and return 2004-02-03 13:00:00
Call 456 may have four occurances and return four separate date and times.
I want the first occurance, if there is one. How do I get this? When the report is complete, I will have the detail section suppressed and will be working with the group footer information.
Thanks in advance.