Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Calls Answered After Threshold - Missing Data?

Status
Not open for further replies.

MiagiSan

IS-IT--Management
Aug 1, 2005
51
CA
Hello,

I am using Symposium Express 4.2 Rev 7 and I am creating a custom performance report in Crystal. I want to add service level to my report and I am using the following formula.

NumberVar TotalCallsday:=0;
NumberVar CallsDelayedday:=0;

TotalCallsday:=Sum({iApplicationStat.CallsAnswered},{iApplicationStat.Timestamp}) + Sum({iApplicationStat.CallsAbandoned},{iApplicationStat.Timestamp});

CallsDelayedday:=Sum({iApplicationStat.CallsAnsweredAftThreshold},{iApplicationStat.Timestamp}) + Sum({iApplicationStat.CallsAbandonedAftThreshold},{iApplicationStat.Timestamp});

//Service level percent

if (TotalCallsday <= 0) then
0
Else
((TotalCallsday - CallsDelayedday)/TotalCallsday)*100


The problem is that I am not seeing any data; when I look in the {iApplicationStat.CallsAnsweredAftThreshold} field, it is blank.

My real time display shows a service level and I have my Threshold set to 80/120. Any idea what I might be doing wrong ?

Thank you for the help

R
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top