I’m relatively new to the world of CCPulse, and have a question which I was hoping someone might be able to help.
We currently have a CCPulse template which shows the not ready reason code in a column
So the Column is call Not Ready Reason Code and a value might be Lunch.
What I need to add is the current time the agent is in that state, (not a cumalative total) so if they change from lunch to toilet it would re-set to 0.
So The column should show the value Lunch 00:12:23 and that would re-set to 0 and count again if they change to another walkaway code.
So the current formula looks something like, what would I need to add?
if (ccpulse.group(“Withdrawn”).statistic(“Break”)>0) {“Break”}
else if (ccpulse.group(“withdrawn”).statistic(“Training”)>0) {“Training”}
else if (ccpulse.group(“withdrawn”).statistic(“Meeting”)>0) {“Meeting”}
else if (ccpulse.group(“withdrawn”).statistic(“Lunch”)>0) {“Lunch”}