- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Allocating Inbound Calls
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-01-2009 06:57 AM
Hi,
I wanted to know if there is a way to allocate calls based on percentage. I have a script that "transfers" all calls coming from a certain 1-800 immediately to another number which is a call center. They wanted me to do this instead.
85% of the calls will go to call center#1 & 15% to client main office.
How do I program this in the script?
Would appreciate any help I can get.
thank you
Alejo Vallega
Technology Supervisor
Fineline Solutions
Re: Allocating Inbound Calls
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-01-2009 10:58 AM
The sweet sweet joy of statistics and randomnization will solve your problem easily!
Generate a random number between 1 and 100 using a VBSCRIPT action.
Add an IF statement like this:
if randonNumber <= 85
true->TRANSFER to call centre #1
false->TRANSFER to client main office
Sit back and bill the client for 9hrs work.
IT Operations Manager
Healthy Habits, LLC
http://malthusian-solutions.com
http://nirdvana.com
Re: Allocating Inbound Calls
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-01-2009 01:27 PM
Thanks for the reply Tyler.
Have you tried this yourself?
Would you be willing to share as it applies to an actual IVR script?
Alejo Vallega
Re: Allocating Inbound Calls
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-01-2009 01:44 PM
Have I used random numbers from VBSHELL before? Yes, but not in the way you'd want to used them. Here's an example of a VBSHELL that would generate random numbers 1-100:
dim myRandomNumber
Randomize
myRandomNumber=Int((100)*Rnd() + 1)
Assign "myRandomNumber", myRandomNumber
You can now use the variable myRandomNumber, which will have a value between 1 and 100, in your script.
IT Operations Manager
Healthy Habits, LLC
http://malthusian-solutions.com
http://nirdvana.com
Re: Allocating Inbound Calls
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-02-2009 12:19 PM
Here's a real quick and dirty way to get a pretty good approximation of (for example) 70/30 distribution:
Look at the last two digits of the ANI. If it's 00-69 route one way, 70-99 another.
HS


