" /> CCPulse Count Formula - Genesys CTI User Forum

Author Topic: CCPulse Count Formula  (Read 2385 times)

Offline PFCCWA

  • Hero Member
  • *****
  • Posts: 655
  • Karma: -7
CCPulse Count Formula
« on: July 12, 2011, 01:17:42 PM »
Advertisement
Hello,

I am trying to use a count formula in ccpulse but cant seem to get one to work.

Have tried count(), count.if(), countif(), CountIf(), countIf() without success usually receiving a message "error in formula:object expected" or "error in formula:expected identifier".

I am created a custom statistic (calls waitiing) which will return integer values of 1.00, 2.00 and 3.00.  Alongside this I want to create a formula statistic that count the number of calls waiting with a value of 1.00, 2.00 and 3.00.

Thanks,
WA

Offline Tambo

  • Sr. Member
  • ****
  • Posts: 456
  • Karma: 5
Re: CCPulse Count Formula
« Reply #1 on: July 13, 2011, 11:34:10 AM »
Hi Wa,

I tend to use the following then amend it for what i'm trying to do. Don't know if it will work for you but it has for everything i've tried so far. Just add more lines in  :)

result.Text = CalculateReason();

function CalculateReason()

{

if (ccpulse.Real_Time.XXX("XXX")>0)
  { return "XXX ";}
}