I want a report that lists our CALL TRACKING stats in a summary format. The database is on a help desk.
I am working with the following tables:
SERVICE_CALL
SERVICE_CALL_EVENT
Table SERVICE_CALL has the following fields which I use:
SERVICE_CALL.ASSIGNED_UID (tech that was assigned the call)
SERVICE_CALL.CREATE_DT (when the call was opened)
SERVICE_CALL.SERVICE_CALL_ID (call number)
Table SERVICE_CALL_EVENT has the following field:
SERVICE_CALL_EVENT.SERVICE_CALL_EVENT_TYPE ---this can be equal to many things. The TYPE I care about is CLOSED
I want column headers of:
1.Assigned_uid
2. #of new calls/assigned_uid
3. #of new&closed calls/assigned uid
4. Percentage of calls closed/assigned uid
My row will be:
assigned_uid
I thought the following formula would give me the number of closed calls per uid:
if {SERVICE_CALL.SVC_CALL_STATE}="CLOSED"
then DistinctCount ({SERVICE_CALL.SERVICE_CALL_ID})
I have GROUP ONE being ASSIGNED_UID and GROUP TWO being SERVICE_CALL_EVENT.SERVICE_CALL_EVENT_TYPE
With the above formula inserted in the assigned uid group, I get the ALL uids, not a tech by tech breakdown. ie: if there were 14 calls in the week for ALL techs, I get 14 in each ASSIGNED_UID not the actual number of calls each tech closed.
I hope that makes sense. I need assistance, again, with formula writing.
Thanks,
Joy
I am working with the following tables:
SERVICE_CALL
SERVICE_CALL_EVENT
Table SERVICE_CALL has the following fields which I use:
SERVICE_CALL.ASSIGNED_UID (tech that was assigned the call)
SERVICE_CALL.CREATE_DT (when the call was opened)
SERVICE_CALL.SERVICE_CALL_ID (call number)
Table SERVICE_CALL_EVENT has the following field:
SERVICE_CALL_EVENT.SERVICE_CALL_EVENT_TYPE ---this can be equal to many things. The TYPE I care about is CLOSED
I want column headers of:
1.Assigned_uid
2. #of new calls/assigned_uid
3. #of new&closed calls/assigned uid
4. Percentage of calls closed/assigned uid
My row will be:
assigned_uid
I thought the following formula would give me the number of closed calls per uid:
if {SERVICE_CALL.SVC_CALL_STATE}="CLOSED"
then DistinctCount ({SERVICE_CALL.SERVICE_CALL_ID})
I have GROUP ONE being ASSIGNED_UID and GROUP TWO being SERVICE_CALL_EVENT.SERVICE_CALL_EVENT_TYPE
With the above formula inserted in the assigned uid group, I get the ALL uids, not a tech by tech breakdown. ie: if there were 14 calls in the week for ALL techs, I get 14 in each ASSIGNED_UID not the actual number of calls each tech closed.
I hope that makes sense. I need assistance, again, with formula writing.
Thanks,
Joy