Hello,
This should be easier than thought but Im trying to achieve a ccpulse real time level (and historical) statistic which will show the number of calls (inbound), calls dialed and outbound calls per hour for a group of agents.
When I try the following formula (documented within reporting technical reference guide for N_Calls_Per_Hour) it provides a end result of calls per agent per hour rather than the group:
FORMULA
case T_LOGIN
when 0 then 0
else convert( float, N_INBOUND + N_OUTBOUND + N_INTERNAL +
N_CONSULT + N_UNKNOWN ) * 3600 / T_LOGIN
end
Within CCPulse I am using for N_Inbound_Per_Hour:
ccpulse.CCT.Inbound * 3600 / ccpulse.CCT.statistic(“Total_Login_Time 1”)
Any ideas would be appreciated.
Thanks,WA