Custom Stat

Hi.

Quick stat question.

I have the following filters on my stat server

Billing=PairExists(“call_type”,“billing”)
Tech=PairExists(“call_type”,“technical”)

I want to create a third filter which I can use to capture all the calls which aren’t billing or technical.

Any ideas?

Fairly easily accomplished with Boolean logic.

I believe you would want it set up to be :
NotBillingOrTechnical = ~PairExists(“call_type”,“billing”) & ~ PairExists(“call_type”,“technical”)
or
NotBillingOrTechnical = ~(PairExists(“call_type”,“billing”) | PairExists(“call_type”,“technical”))

For clarification:
~ = not operator
& = and operator
| = or operator

I think I have my operators [symbols] correct; refer to the documentation to see what the correct symbols are.

Perfect!!

Thanks

2 Likes