The ERLANGB function determines the probability of a request being blocked given a specified number of servers, arrival rate of requests, and the average service duration.

For example, you can use the ERLANGB function to ensure that a certain percentage of all requests are fulfilled.

Syntax

ERLANGB(Number of servers, Arrival rate, Average duration)

Arguments

ArgumentData typeDescription
Number of serversNumberThe number of servers (for example, call center agents) available to process requests.
Arrival rateNumberThe interval between the arrival of each request.
Average durationNumberThe average duration it takes to process each request.

The ERLANGB function returns a number, which is the probability a request is blocked.

Additional information

How Erlang B is calculated

Erlang B is the solution to this equation:

ERLANGB(x,y,z)=axx!k=xk=0akk!ERLANGB(x,y,z) = \dfrac{\frac{a^x}{x!}}{\sum \quad_{k = x}^{k = 0} \quad \frac{a^k}{k!}}

In this equation:

  • x is the Number of servers.
  • y is the Arrival rate.
  • z is the Average duration.
  • a is the offered load, which is y multiplied by z.

Constraints

Time unit for arguments

The Arrival rate and Average duration arguments do not have to use a specific time unit. For example, they can use seconds or minutes. However, both arguments must use the same time unit.

Maximum number of servers

The maximum number you can use for the Number of servers argument is five million.

Calculation engine functionality differences

Call center planning functions are unavailable in Polaris. Learn more about the differences between Anaplan calculation engines.

Related Anaplan functions

Examples

In this example, the Call Centers list is on columns, and line items on rows. The first three line items contain the scheduled number of servers, arrival rate of requests, and average duration to fulfil requests. The fourth line item, Blocking Possibility calculates the possibility of a call being blocked using a formula.

The final two line items are a numeric line item, Required Extra Agents, to adjust the number of servers, and a formula that displays the blocking possibility after adjustment. This can be used to adjust the number of servers until the desired blocking possibility is reached (in this case, less than 5%).

Both of the line items that contain formulas use the Percentage format with two decimal places to display the possibility as a percentage. 


Call Center 1Call Center 2Call Center 3Call Center 4
Scheduled Number of Servers25455039
Request Arrival Rate0.760.931.41.2
Average Duration25554566

Blocking Possibility

ERLANGB(Scheduled Number of Servers, Request Arrival Rate, Average Duration)

3.63%18.58%24.74%51.88%
Extra Servers-1121946

Amended Blocking Possibility

ERLANGB(Scheduled Number of Servers + Required Extra Servers, Request Arrival Rate, Average Duration)

4.85%4.69%4.57% 4.60%

Disclaimer

We update Anapedia regularly to provide the most up-to-date instructions.